pub struct Meta(pub BinEl);Expand description
Undocumented (apart from source) Everest extension, for storing the Map’s name and icon.
Tuple Fields§
§0: BinElTrait Implementations§
Source§impl BinElType for Meta
impl BinElType for Meta
Source§fn from_binel(binel: BinElValue) -> Result<Self>
fn from_binel(binel: BinElValue) -> Result<Self>
Deserialize self from a BinElValue.
Source§fn into_binel(self) -> BinElValue
fn into_binel(self) -> BinElValue
Serialize self into a BinElValue. Can never fail.
Source§fn maybe_attr() -> bool
fn maybe_attr() -> bool
Whether the
BinElType may serialize to a BinElValue::Attribute. Recommended.Source§fn maybe_elem() -> bool
fn maybe_elem() -> bool
Whether the
BinElType may serialize to a BinElValue::Element. Recommended.impl StructuralPartialEq for Meta
Auto Trait Implementations§
impl Freeze for Meta
impl RefUnwindSafe for Meta
impl Send for Meta
impl Sync for Meta
impl Unpin for Meta
impl UnsafeUnpin for Meta
impl UnwindSafe for Meta
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