pub struct IndexError {
pub status: Option<f64>,
pub error: Option<IndexErrorCause>,
}Fields§
§status: Option<f64>§error: Option<IndexErrorCause>Implementations§
Source§impl IndexError
impl IndexError
pub fn new() -> IndexError
Trait Implementations§
Source§impl Clone for IndexError
impl Clone for IndexError
Source§fn clone(&self) -> IndexError
fn clone(&self) -> IndexError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IndexError
impl Debug for IndexError
Source§impl Default for IndexError
impl Default for IndexError
Source§fn default() -> IndexError
fn default() -> IndexError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IndexError
impl<'de> Deserialize<'de> for IndexError
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 IndexError
impl PartialEq for IndexError
Source§fn eq(&self, other: &IndexError) -> bool
fn eq(&self, other: &IndexError) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IndexError
impl Serialize for IndexError
impl StructuralPartialEq for IndexError
Auto Trait Implementations§
impl Freeze for IndexError
impl RefUnwindSafe for IndexError
impl Send for IndexError
impl Sync for IndexError
impl Unpin for IndexError
impl UnsafeUnpin for IndexError
impl UnwindSafe for IndexError
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