pub enum LayoutProfile {
V3,
V5,
V8,
V11,
V15,
V16,
V17,
V18,
V19,
V22,
}Expand description
Wire-layout transitions used between SCCP versions 3 and 22.
Variants§
V3
Layouts used by versions 3 and 4.
V5
Layouts used by versions 5 through 7.
V8
Layouts used by versions 8 through 10.
V11
Layouts used by versions 11 through 14.
V15
Layouts specific to version 15.
V16
Layouts specific to version 16.
V17
Layouts specific to version 17.
V18
Layouts specific to version 18.
V19
Layouts used by versions 19 through 21.
V22
Layouts used by version 22.
Trait Implementations§
Source§impl Clone for LayoutProfile
impl Clone for LayoutProfile
Source§fn clone(&self) -> LayoutProfile
fn clone(&self) -> LayoutProfile
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 LayoutProfile
Source§impl Debug for LayoutProfile
impl Debug for LayoutProfile
impl Eq for LayoutProfile
Source§impl Hash for LayoutProfile
impl Hash for LayoutProfile
Source§impl Ord for LayoutProfile
impl Ord for LayoutProfile
Source§fn cmp(&self, other: &LayoutProfile) -> Ordering
fn cmp(&self, other: &LayoutProfile) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for LayoutProfile
impl PartialEq for LayoutProfile
Source§impl PartialOrd for LayoutProfile
impl PartialOrd for LayoutProfile
impl StructuralPartialEq for LayoutProfile
Auto Trait Implementations§
impl Freeze for LayoutProfile
impl RefUnwindSafe for LayoutProfile
impl Send for LayoutProfile
impl Sync for LayoutProfile
impl Unpin for LayoutProfile
impl UnsafeUnpin for LayoutProfile
impl UnwindSafe for LayoutProfile
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