pub struct RecordWrite<TProperties> {
pub space: String,
pub external_id: String,
pub sources: Vec<RecordData<TProperties>>,
}Expand description
Create/update of a record.
Fields§
§space: StringThe space of the record.
external_id: StringThe external ID of the record.
sources: Vec<RecordData<TProperties>>The properties to be written.
Trait Implementations§
Source§impl<TProperties: Clone> Clone for RecordWrite<TProperties>
impl<TProperties: Clone> Clone for RecordWrite<TProperties>
Source§fn clone(&self) -> RecordWrite<TProperties>
fn clone(&self) -> RecordWrite<TProperties>
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<TProperties: Debug> Debug for RecordWrite<TProperties>
impl<TProperties: Debug> Debug for RecordWrite<TProperties>
Source§impl<'de, TProperties> Deserialize<'de> for RecordWrite<TProperties>where
TProperties: Deserialize<'de>,
impl<'de, TProperties> Deserialize<'de> for RecordWrite<TProperties>where
TProperties: Deserialize<'de>,
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<TProperties> Freeze for RecordWrite<TProperties>
impl<TProperties> RefUnwindSafe for RecordWrite<TProperties>where
TProperties: RefUnwindSafe,
impl<TProperties> Send for RecordWrite<TProperties>where
TProperties: Send,
impl<TProperties> Sync for RecordWrite<TProperties>where
TProperties: Sync,
impl<TProperties> Unpin for RecordWrite<TProperties>where
TProperties: Unpin,
impl<TProperties> UnwindSafe for RecordWrite<TProperties>where
TProperties: UnwindSafe,
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