pub struct PartialRecord {
pub name: String,
pub parameters: Vec<Value>,
}Expand description
One simple entity leaf within an entity instance.
Fields§
§name: StringUppercase entity name.
parameters: Vec<Value>Explicit external-mapping parameters.
Trait Implementations§
Source§impl Clone for PartialRecord
impl Clone for PartialRecord
Source§fn clone(&self) -> PartialRecord
fn clone(&self) -> PartialRecord
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 PartialRecord
impl Debug for PartialRecord
Source§impl PartialEq for PartialRecord
impl PartialEq for PartialRecord
impl StructuralPartialEq for PartialRecord
Auto Trait Implementations§
impl Freeze for PartialRecord
impl RefUnwindSafe for PartialRecord
impl Send for PartialRecord
impl Sync for PartialRecord
impl Unpin for PartialRecord
impl UnsafeUnpin for PartialRecord
impl UnwindSafe for PartialRecord
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