pub struct JSONErrors {
pub invalid_filters: Option<Vec<String>>,
pub invalid_language: Option<String>,
pub invalid_query_params: Option<Vec<String>>,
}Fields§
§invalid_filters: Option<Vec<String>>§invalid_language: Option<String>§invalid_query_params: Option<Vec<String>>Trait Implementations§
Source§impl Clone for JSONErrors
impl Clone for JSONErrors
Source§fn clone(&self) -> JSONErrors
fn clone(&self) -> JSONErrors
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 JSONErrors
impl Debug for JSONErrors
Source§impl<'de> Deserialize<'de> for JSONErrors
impl<'de> Deserialize<'de> for JSONErrors
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 JSONErrors
impl RefUnwindSafe for JSONErrors
impl Send for JSONErrors
impl Sync for JSONErrors
impl Unpin for JSONErrors
impl UnsafeUnpin for JSONErrors
impl UnwindSafe for JSONErrors
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