pub enum RegisterSuccess {
Status201(Register201Response),
}Expand description
Enum for successes of method register.
Variants§
Status201(Register201Response)
Response for status code 201.
Trait Implementations§
Source§impl Clone for RegisterSuccess
impl Clone for RegisterSuccess
Source§fn clone(&self) -> RegisterSuccess
fn clone(&self) -> RegisterSuccess
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 moreAuto Trait Implementations§
impl Freeze for RegisterSuccess
impl RefUnwindSafe for RegisterSuccess
impl Send for RegisterSuccess
impl Sync for RegisterSuccess
impl Unpin for RegisterSuccess
impl UnwindSafe for RegisterSuccess
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