pub struct ClientRegistrationError {
pub error: ClientRegistrationErrorCode,
pub error_description: Option<String>,
}Expand description
Client Registration Error Response (RFC 7591)
Fields§
§error: ClientRegistrationErrorCodeError code
error_description: Option<String>Human-readable error description
Trait Implementations§
Source§impl Clone for ClientRegistrationError
impl Clone for ClientRegistrationError
Source§fn clone(&self) -> ClientRegistrationError
fn clone(&self) -> ClientRegistrationError
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 ClientRegistrationError
impl Debug for ClientRegistrationError
Source§impl<'de> Deserialize<'de> for ClientRegistrationError
impl<'de> Deserialize<'de> for ClientRegistrationError
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 ClientRegistrationError
impl RefUnwindSafe for ClientRegistrationError
impl Send for ClientRegistrationError
impl Sync for ClientRegistrationError
impl Unpin for ClientRegistrationError
impl UnwindSafe for ClientRegistrationError
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