pub struct CFResponse {
pub success: bool,
pub errors: Vec<CFError>,
pub messages: Option<Vec<String>>,
pub result_info: Option<ResultInfo>,
pub result: Option<Vec<CFResult>>,
}Expand description
response of List
Fields§
§success: bool§errors: Vec<CFError>§messages: Option<Vec<String>>§result_info: Option<ResultInfo>§result: Option<Vec<CFResult>>Trait Implementations§
Source§impl Debug for CFResponse
impl Debug for CFResponse
Source§impl<'de> Deserialize<'de> for CFResponse
impl<'de> Deserialize<'de> for CFResponse
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 Freeze for CFResponse
impl RefUnwindSafe for CFResponse
impl Send for CFResponse
impl Sync for CFResponse
impl Unpin for CFResponse
impl UnwindSafe for CFResponse
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