pub enum RecordedLayerKind {
Regular,
Filter {
filter_data: FilterData,
placement: FilterLayerPlacement,
},
}Expand description
Additional metadata for regular and filter layers.
Variants§
Regular
A regular layer.
Filter
A filter layer.
Fields
§
filter_data: FilterDataStatic data about the filter itself.
§
placement: FilterLayerPlacementData about how to place the filter layer, which can only be determined once its contents have been recorded.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RecordedLayerKind
impl RefUnwindSafe for RecordedLayerKind
impl Send for RecordedLayerKind
impl Sync for RecordedLayerKind
impl Unpin for RecordedLayerKind
impl UnsafeUnpin for RecordedLayerKind
impl UnwindSafe for RecordedLayerKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more