pub struct PropertyInstance {
pub name: String,
pub value: Value,
/* private fields */
}
Fields§
§name: String
The name of the property.
value: Value
The value of the property
Implementations§
Trait Implementations§
Source§impl Clone for PropertyInstance
impl Clone for PropertyInstance
Source§fn clone(&self) -> PropertyInstance
fn clone(&self) -> PropertyInstance
Returns a copy 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 PropertyInstance
impl Debug for PropertyInstance
Source§impl Serialize for PropertyInstance
impl Serialize for PropertyInstance
Source§impl TableInlineFormatSetter for PropertyInstance
impl TableInlineFormatSetter for PropertyInstance
fn set_table_inline_format(&mut self, table_inline_format: TableInlineFormat)
Source§impl Tabled for PropertyInstance
impl Tabled for PropertyInstance
Auto Trait Implementations§
impl Freeze for PropertyInstance
impl RefUnwindSafe for PropertyInstance
impl Send for PropertyInstance
impl Sync for PropertyInstance
impl Unpin for PropertyInstance
impl UnwindSafe for PropertyInstance
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