pub struct FramePathStep {
pub transform: &'static FrameTransform,
pub inverse: bool,
}Expand description
One hop in a multi-hop frame-transform path.
Fields§
§transform: &'static FrameTransformThe catalogue transform to apply.
inverse: boolWhen true, apply the transform in the inverse direction.
Trait Implementations§
Source§impl Clone for FramePathStep
impl Clone for FramePathStep
Source§fn clone(&self) -> FramePathStep
fn clone(&self) -> FramePathStep
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FramePathStep
Auto Trait Implementations§
impl Freeze for FramePathStep
impl RefUnwindSafe for FramePathStep
impl Send for FramePathStep
impl Sync for FramePathStep
impl Unpin for FramePathStep
impl UnsafeUnpin for FramePathStep
impl UnwindSafe for FramePathStep
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