pub struct LargeCommunity {
pub global_administrator: u32,
pub local_data: [u32; 2],
}Expand description
Fields§
§global_administrator: u32§local_data: [u32; 2]Implementations§
Trait Implementations§
Source§impl Clone for LargeCommunity
impl Clone for LargeCommunity
Source§fn clone(&self) -> LargeCommunity
fn clone(&self) -> LargeCommunity
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 LargeCommunity
impl Debug for LargeCommunity
Source§impl Display for LargeCommunity
impl Display for LargeCommunity
Source§impl PartialEq for LargeCommunity
impl PartialEq for LargeCommunity
Source§impl Serialize for LargeCommunity
impl Serialize for LargeCommunity
impl Copy for LargeCommunity
impl Eq for LargeCommunity
impl StructuralPartialEq for LargeCommunity
Auto Trait Implementations§
impl Freeze for LargeCommunity
impl RefUnwindSafe for LargeCommunity
impl Send for LargeCommunity
impl Sync for LargeCommunity
impl Unpin for LargeCommunity
impl UnwindSafe for LargeCommunity
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