pub struct NestedResponse {
pub status: Option<i32>,
pub error_collection: Option<Box<ErrorCollection>>,
}
Fields§
§status: Option<i32>
§error_collection: Option<Box<ErrorCollection>>
Implementations§
Source§impl NestedResponse
impl NestedResponse
pub fn new() -> NestedResponse
Trait Implementations§
Source§impl Clone for NestedResponse
impl Clone for NestedResponse
Source§fn clone(&self) -> NestedResponse
fn clone(&self) -> NestedResponse
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 NestedResponse
impl Debug for NestedResponse
Source§impl Default for NestedResponse
impl Default for NestedResponse
Source§fn default() -> NestedResponse
fn default() -> NestedResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NestedResponse
impl<'de> Deserialize<'de> for NestedResponse
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 NestedResponse
impl PartialEq for NestedResponse
Source§impl Serialize for NestedResponse
impl Serialize for NestedResponse
impl StructuralPartialEq for NestedResponse
Auto Trait Implementations§
impl Freeze for NestedResponse
impl RefUnwindSafe for NestedResponse
impl Send for NestedResponse
impl Sync for NestedResponse
impl Unpin for NestedResponse
impl UnwindSafe for NestedResponse
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