pub enum RegisterUnitPropertyError {
Status401(),
Status500(String),
UnknownValue(Value),
}Expand description
struct for typed errors of method register_unit_property
Variants§
Trait Implementations§
Source§impl Clone for RegisterUnitPropertyError
impl Clone for RegisterUnitPropertyError
Source§fn clone(&self) -> RegisterUnitPropertyError
fn clone(&self) -> RegisterUnitPropertyError
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 RegisterUnitPropertyError
impl Debug for RegisterUnitPropertyError
Source§impl<'de> Deserialize<'de> for RegisterUnitPropertyError
impl<'de> Deserialize<'de> for RegisterUnitPropertyError
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 RegisterUnitPropertyError
impl RefUnwindSafe for RegisterUnitPropertyError
impl Send for RegisterUnitPropertyError
impl Sync for RegisterUnitPropertyError
impl Unpin for RegisterUnitPropertyError
impl UnsafeUnpin for RegisterUnitPropertyError
impl UnwindSafe for RegisterUnitPropertyError
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