pub struct EntityInput {
pub name: String,
pub entity_type: String,
pub observations: Vec<String>,
}Fields§
§name: String§entity_type: String§observations: Vec<String>Trait Implementations§
Source§impl Clone for EntityInput
impl Clone for EntityInput
Source§fn clone(&self) -> EntityInput
fn clone(&self) -> EntityInput
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 moreSource§impl Debug for EntityInput
impl Debug for EntityInput
Source§impl<'de> Deserialize<'de> for EntityInput
impl<'de> Deserialize<'de> for EntityInput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EntityInput
impl RefUnwindSafe for EntityInput
impl Send for EntityInput
impl Sync for EntityInput
impl Unpin for EntityInput
impl UnsafeUnpin for EntityInput
impl UnwindSafe for EntityInput
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