pub(crate) enum BitwardenErrorType {
Basic,
Flat,
Full,
}
Variants§
Basic
The error is going to be converted into a string using the ToString
trait
Flat
The error is going to be converted into a flat error using the FlatError
trait
Full
The entire error stack is going to be made available using serde
Trait Implementations§
Source§impl FromMeta for BitwardenErrorType
impl FromMeta for BitwardenErrorType
Source§fn from_list(__outer: &[NestedMeta]) -> Result<Self>
fn from_list(__outer: &[NestedMeta]) -> Result<Self>
Create an instance from a list of nested meta items.
Source§fn from_string(lit: &str) -> Result<Self>
fn from_string(lit: &str) -> Result<Self>
Create an instance from a string literal in a value position.
Source§fn from_word() -> Result<Self>
fn from_word() -> Result<Self>
Create an instance from the presence of the word in the attribute with no
additional options specified.
fn from_nested_meta(item: &NestedMeta) -> Result<Self, Error>
§fn from_meta(item: &Meta) -> Result<Self, Error>
fn from_meta(item: &Meta) -> Result<Self, Error>
Create an instance from a
syn::Meta
by dispatching to the format-appropriate
trait function. This generally should not be overridden by implementers. Read more§fn from_none() -> Option<Self>
fn from_none() -> Option<Self>
When a field is omitted from a parent meta-item,
from_none
is used to attempt
recovery before a missing field error is generated. Read more§fn from_value(value: &Lit) -> Result<Self, Error>
fn from_value(value: &Lit) -> Result<Self, Error>
Create an instance from a literal value of either
foo = "bar"
or foo("bar")
.
This dispatches to the appropriate method based on the type of literal encountered,
and generally should not be overridden by implementers. Read morefn from_expr(expr: &Expr) -> Result<Self, Error>
Auto Trait Implementations§
impl Freeze for BitwardenErrorType
impl RefUnwindSafe for BitwardenErrorType
impl Send for BitwardenErrorType
impl Sync for BitwardenErrorType
impl Unpin for BitwardenErrorType
impl UnwindSafe for BitwardenErrorType
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