pub struct RowResult<R = Row> {
pub message: Message,
pub result: Vec<R>,
pub result_code: i64,
pub version: Option<i64>,
pub failed_items: Option<Vec<R>>,
}
Expand description
Response returned when successfully Adding Row
s to a Sheet. Represents
a Result object.
Fields§
§message: Message
§result: Vec<R>
§result_code: i64
§version: Option<i64>
§failed_items: Option<Vec<R>>
Trait Implementations§
Source§impl<'de, R> Deserialize<'de> for RowResult<R>where
R: Deserialize<'de>,
impl<'de, R> Deserialize<'de> for RowResult<R>where
R: 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
impl<R> StructuralPartialEq for RowResult<R>
Auto Trait Implementations§
impl<R> Freeze for RowResult<R>
impl<R> RefUnwindSafe for RowResult<R>where
R: RefUnwindSafe,
impl<R> Send for RowResult<R>where
R: Send,
impl<R> Sync for RowResult<R>where
R: Sync,
impl<R> Unpin for RowResult<R>where
R: Unpin,
impl<R> UnwindSafe for RowResult<R>where
R: 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