pub struct RowStatus {
pub changed: Option<bool>,
pub entity_id: Option<i64>,
pub entity_name: Option<String>,
pub errors: Option<Vec<String>>,
pub persisted: Option<bool>,
pub row_number: Option<i32>,
}Expand description
Represents the upload status of a row in the request.
This type is not used in any activity, and only used as part of another schema.
Fields§
§changed: Option<bool>Whether the stored entity is changed as a result of upload.
entity_id: Option<i64>Entity Id.
entity_name: Option<String>Entity name.
errors: Option<Vec<String>>Reasons why the entity can’t be uploaded.
persisted: Option<bool>Whether the entity is persisted.
row_number: Option<i32>Row number.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RowStatus
impl<'de> Deserialize<'de> for RowStatus
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
impl Part for RowStatus
Auto Trait Implementations§
impl Freeze for RowStatus
impl RefUnwindSafe for RowStatus
impl Send for RowStatus
impl Sync for RowStatus
impl Unpin for RowStatus
impl UnwindSafe for RowStatus
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