pub struct AccountUpdateRequest {
pub name: Option<String>,
pub custom_logo: Option<ByteArray>,
pub features: Option<Vec<String>>,
pub add_auth_configs: Option<Vec<AuthenticationConfig>>,
pub mod_auth_configs: Option<HashMap<String, AuthenticationConfig>>,
pub del_auth_configs: Option<Vec<Uuid>>,
}
Fields§
§name: Option<String>
§custom_logo: Option<ByteArray>
§features: Option<Vec<String>>
§add_auth_configs: Option<Vec<AuthenticationConfig>>
§mod_auth_configs: Option<HashMap<String, AuthenticationConfig>>
§del_auth_configs: Option<Vec<Uuid>>
Implementations§
Source§impl AccountUpdateRequest
impl AccountUpdateRequest
pub fn new() -> AccountUpdateRequest
Trait Implementations§
Source§impl Clone for AccountUpdateRequest
impl Clone for AccountUpdateRequest
Source§fn clone(&self) -> AccountUpdateRequest
fn clone(&self) -> AccountUpdateRequest
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 AccountUpdateRequest
impl Debug for AccountUpdateRequest
Source§impl<'de> Deserialize<'de> for AccountUpdateRequest
impl<'de> Deserialize<'de> for AccountUpdateRequest
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 AccountUpdateRequest
impl PartialEq for AccountUpdateRequest
Source§impl Serialize for AccountUpdateRequest
impl Serialize for AccountUpdateRequest
impl StructuralPartialEq for AccountUpdateRequest
Auto Trait Implementations§
impl Freeze for AccountUpdateRequest
impl RefUnwindSafe for AccountUpdateRequest
impl Send for AccountUpdateRequest
impl Sync for AccountUpdateRequest
impl Unpin for AccountUpdateRequest
impl UnwindSafe for AccountUpdateRequest
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