pub struct ElementRegistration {
pub name: String,
pub metadata: HashMap<String, String>,
pub parent_id: Option<u64>,
/* private fields */
}
Fields§
§name: String
§metadata: HashMap<String, String>
§parent_id: Option<u64>
Implementations§
Trait Implementations§
Source§impl Clone for ElementRegistration
impl Clone for ElementRegistration
Source§fn clone(&self) -> ElementRegistration
fn clone(&self) -> ElementRegistration
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 ElementRegistration
impl Debug for ElementRegistration
Source§impl<'de> Deserialize<'de> for ElementRegistration
impl<'de> Deserialize<'de> for ElementRegistration
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ElementRegistration, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ElementRegistration, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ElementRegistration
impl Serialize for ElementRegistration
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for ElementRegistration
impl RefUnwindSafe for ElementRegistration
impl Send for ElementRegistration
impl Sync for ElementRegistration
impl Unpin for ElementRegistration
impl UnwindSafe for ElementRegistration
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