pub struct Client {
pub client_id: Option<String>,
pub client_key: Option<String>,
pub callback_url: Option<String>,
pub create_time: Option<String>,
pub last_update_time: Option<String>,
pub display_name: Option<String>,
pub description: Option<String>,
}Fields§
§client_id: Option<String>A unique identifier for the client. Must be unique for the tenant.
client_key: Option<String>A secret key for authenticating the client.
callback_url: Option<String>URL for application to receive OAuth callbacks for executing flows such as authorization_code.
create_time: Option<String>The time the client was created.
last_update_time: Option<String>The time the client was last updated.
display_name: Option<String>The display name that will represent this client.
description: Option<String>A description of this client.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Client
impl<'de> Deserialize<'de> for Client
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
impl StructuralPartialEq for Client
Auto Trait Implementations§
impl Freeze for Client
impl RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl UnsafeUnpin for Client
impl UnwindSafe for Client
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