pub struct UpdateServiceRequestLogin {
pub provider_name: String,
}Expand description
UpdateServiceRequestLogin : a login can only be added, to remove the login functionality, either set the providerName to an empty string or recreate the service without the login property
Fields§
§provider_name: StringImplementations§
Source§impl UpdateServiceRequestLogin
impl UpdateServiceRequestLogin
Sourcepub fn new(provider_name: String) -> UpdateServiceRequestLogin
pub fn new(provider_name: String) -> UpdateServiceRequestLogin
a login can only be added, to remove the login functionality, either set the providerName to an empty string or recreate the service without the login property
Trait Implementations§
Source§impl Clone for UpdateServiceRequestLogin
impl Clone for UpdateServiceRequestLogin
Source§fn clone(&self) -> UpdateServiceRequestLogin
fn clone(&self) -> UpdateServiceRequestLogin
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateServiceRequestLogin
impl Debug for UpdateServiceRequestLogin
Source§impl Default for UpdateServiceRequestLogin
impl Default for UpdateServiceRequestLogin
Source§fn default() -> UpdateServiceRequestLogin
fn default() -> UpdateServiceRequestLogin
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateServiceRequestLogin
impl<'de> Deserialize<'de> for UpdateServiceRequestLogin
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 UpdateServiceRequestLogin
impl PartialEq for UpdateServiceRequestLogin
Source§fn eq(&self, other: &UpdateServiceRequestLogin) -> bool
fn eq(&self, other: &UpdateServiceRequestLogin) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateServiceRequestLogin
Auto Trait Implementations§
impl Freeze for UpdateServiceRequestLogin
impl RefUnwindSafe for UpdateServiceRequestLogin
impl Send for UpdateServiceRequestLogin
impl Sync for UpdateServiceRequestLogin
impl Unpin for UpdateServiceRequestLogin
impl UnsafeUnpin for UpdateServiceRequestLogin
impl UnwindSafe for UpdateServiceRequestLogin
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