pub struct CSVResponse {
pub message: String,
pub request_id: i32,
pub success: bool,
}Fields§
§message: StringResult message: ‘OK’ or error description
- Example:
"OK".to_string()
request_id: i32Request ID echo
- Example:
127i32
success: boolOperation success status
Trait Implementations§
Source§impl Clone for CSVResponse
impl Clone for CSVResponse
Source§fn clone(&self) -> CSVResponse
fn clone(&self) -> CSVResponse
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 CSVResponse
impl Debug for CSVResponse
Source§impl Default for CSVResponse
impl Default for CSVResponse
Source§impl<'de> Deserialize<'de> for CSVResponse
impl<'de> Deserialize<'de> for CSVResponse
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 CSVResponse
impl PartialEq for CSVResponse
impl StructuralPartialEq for CSVResponse
Auto Trait Implementations§
impl Freeze for CSVResponse
impl RefUnwindSafe for CSVResponse
impl Send for CSVResponse
impl Sync for CSVResponse
impl Unpin for CSVResponse
impl UnsafeUnpin for CSVResponse
impl UnwindSafe for CSVResponse
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