pub enum IngestEntityList {
List(Vec<IngestEntity>),
Dict(BTreeMap<String, IngestEntityProperty>),
}Variants§
List(Vec<IngestEntity>)
Dict(BTreeMap<String, IngestEntityProperty>)
Trait Implementations§
Source§impl Clone for IngestEntityList
impl Clone for IngestEntityList
Source§fn clone(&self) -> IngestEntityList
fn clone(&self) -> IngestEntityList
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 IngestEntityList
impl Debug for IngestEntityList
Source§impl<'de> Deserialize<'de> for IngestEntityList
impl<'de> Deserialize<'de> for IngestEntityList
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
Source§impl PartialEq for IngestEntityList
impl PartialEq for IngestEntityList
Source§impl Serialize for IngestEntityList
impl Serialize for IngestEntityList
impl StructuralPartialEq for IngestEntityList
Auto Trait Implementations§
impl Freeze for IngestEntityList
impl RefUnwindSafe for IngestEntityList
impl Send for IngestEntityList
impl Sync for IngestEntityList
impl Unpin for IngestEntityList
impl UnsafeUnpin for IngestEntityList
impl UnwindSafe for IngestEntityList
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