pub struct UpdateClient {
pub callback_url: Option<String>,
pub display_name: Option<String>,
}Fields§
§callback_url: Option<String>URL for application to receive OAuth callbacks for executing flows such as authorization_code.
display_name: Option<String>The display name that will represent this client.
Implementations§
Source§impl UpdateClient
impl UpdateClient
pub fn new() -> UpdateClient
Trait Implementations§
Source§impl Clone for UpdateClient
impl Clone for UpdateClient
Source§fn clone(&self) -> UpdateClient
fn clone(&self) -> UpdateClient
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 UpdateClient
impl Debug for UpdateClient
Source§impl Default for UpdateClient
impl Default for UpdateClient
Source§fn default() -> UpdateClient
fn default() -> UpdateClient
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateClient
impl<'de> Deserialize<'de> for UpdateClient
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
Source§impl PartialEq for UpdateClient
impl PartialEq for UpdateClient
Source§impl Serialize for UpdateClient
impl Serialize for UpdateClient
impl StructuralPartialEq for UpdateClient
Auto Trait Implementations§
impl Freeze for UpdateClient
impl RefUnwindSafe for UpdateClient
impl Send for UpdateClient
impl Sync for UpdateClient
impl Unpin for UpdateClient
impl UnsafeUnpin for UpdateClient
impl UnwindSafe for UpdateClient
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