pub struct MaskedFrame(/* private fields */);Expand description
Implementations§
Source§impl MaskedFrame
impl MaskedFrame
Sourcepub fn mask(self) -> MaskedFrame
pub fn mask(self) -> MaskedFrame
mask this frame
Sourcepub fn unmask(self) -> MaskedFrame
pub fn unmask(self) -> MaskedFrame
unmask this frame
Sourcepub fn into_frame(self) -> Frame
pub fn into_frame(self) -> Frame
returns this frame inner type
Trait Implementations§
Source§impl Clone for MaskedFrame
impl Clone for MaskedFrame
Source§fn clone(&self) -> MaskedFrame
fn clone(&self) -> MaskedFrame
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MaskedFrame
impl Debug for MaskedFrame
Source§impl Deref for MaskedFrame
impl Deref for MaskedFrame
Source§impl From<MaskedFrame> for Frame
impl From<MaskedFrame> for Frame
Source§fn from(x: MaskedFrame) -> Self
fn from(x: MaskedFrame) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MaskedFrame
impl RefUnwindSafe for MaskedFrame
impl Send for MaskedFrame
impl Sync for MaskedFrame
impl Unpin for MaskedFrame
impl UnwindSafe for MaskedFrame
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more