pub enum EncodedLayer {
Tag01(EncodedLayer01),
Unknown(EncodedUnknown),
}Expand description
Wire-ready variant of a layer (stage 3 of the encoding pipeline).
Variants§
Tag01(EncodedLayer01)
Unknown(EncodedUnknown)
Implementations§
Trait Implementations§
Source§impl Clone for EncodedLayer
impl Clone for EncodedLayer
Source§fn clone(&self) -> EncodedLayer
fn clone(&self) -> EncodedLayer
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 EncodedLayer
impl Debug for EncodedLayer
Source§impl PartialEq for EncodedLayer
impl PartialEq for EncodedLayer
impl StructuralPartialEq for EncodedLayer
Auto Trait Implementations§
impl Freeze for EncodedLayer
impl RefUnwindSafe for EncodedLayer
impl Send for EncodedLayer
impl Sync for EncodedLayer
impl Unpin for EncodedLayer
impl UnsafeUnpin for EncodedLayer
impl UnwindSafe for EncodedLayer
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