pub struct AccountService {
pub odata_id: Option<String>,
pub odata_type: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub service_enabled: Option<bool>,
pub min_password_length: Option<u32>,
pub max_password_length: Option<u32>,
pub accounts: Option<OdataId>,
pub roles: Option<OdataId>,
pub status: Option<ResourceStatus>,
pub extra: Map<String, Value>,
}Expand description
AccountService resource.
Typically available at /redfish/v1/AccountService.
Fields§
§odata_id: Option<String>§odata_type: Option<String>§id: Option<String>§name: Option<String>§description: Option<String>§service_enabled: Option<bool>§min_password_length: Option<u32>§max_password_length: Option<u32>§accounts: Option<OdataId>§roles: Option<OdataId>§status: Option<ResourceStatus>§extra: Map<String, Value>Trait Implementations§
Source§impl Clone for AccountService
impl Clone for AccountService
Source§fn clone(&self) -> AccountService
fn clone(&self) -> AccountService
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 AccountService
impl Debug for AccountService
Source§impl<'de> Deserialize<'de> for AccountService
impl<'de> Deserialize<'de> for AccountService
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 AccountService
impl RefUnwindSafe for AccountService
impl Send for AccountService
impl Sync for AccountService
impl Unpin for AccountService
impl UnwindSafe for AccountService
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