pub struct NodeDrivesPurposelistError {
pub code: Option<String>,
pub lnn: Option<i32>,
pub message: Option<String>,
pub status: Option<i32>,
}
Fields§
§code: Option<String>
The general meaning of the status code.
lnn: Option<i32>
Logical node number of the node reporting this error.
message: Option<String>
More detailed description of the error.
status: Option<i32>
HTTP Status code returned by this node.
Trait Implementations§
Source§impl Debug for NodeDrivesPurposelistError
impl Debug for NodeDrivesPurposelistError
Source§impl<'de> Deserialize<'de> for NodeDrivesPurposelistError
impl<'de> Deserialize<'de> for NodeDrivesPurposelistError
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 NodeDrivesPurposelistError
impl RefUnwindSafe for NodeDrivesPurposelistError
impl Send for NodeDrivesPurposelistError
impl Sync for NodeDrivesPurposelistError
impl Unpin for NodeDrivesPurposelistError
impl UnwindSafe for NodeDrivesPurposelistError
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more