pub struct GenZConnectionKey {
pub access_key: Option<String>,
pub r_key_domain_checking_enabled: Option<bool>,
pub r_key_read_only_key: Option<String>,
pub r_key_read_write_key: Option<String>,
}
Expand description
The Gen-Z-specific permission key information for a connection.
Fields§
§access_key: Option<String>
The Access Key for this connection.
r_key_domain_checking_enabled: Option<bool>
Indicates whether Region Key domain checking is enabled for this connection.
r_key_read_only_key: Option<String>
The read-only Region Key for this connection.
r_key_read_write_key: Option<String>
The read-write Region Key for this connection.
Trait Implementations§
Source§impl Clone for GenZConnectionKey
impl Clone for GenZConnectionKey
Source§fn clone(&self) -> GenZConnectionKey
fn clone(&self) -> GenZConnectionKey
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GenZConnectionKey
impl Debug for GenZConnectionKey
Source§impl Default for GenZConnectionKey
impl Default for GenZConnectionKey
Source§impl<'de> Deserialize<'de> for GenZConnectionKey
impl<'de> Deserialize<'de> for GenZConnectionKey
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 Metadata<'static> for GenZConnectionKey
impl Metadata<'static> for GenZConnectionKey
Source§const JSON_SCHEMA: &'static str = "Connection.v1_2_0.json"
const JSON_SCHEMA: &'static str = "Connection.v1_2_0.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for GenZConnectionKey
impl RefUnwindSafe for GenZConnectionKey
impl Send for GenZConnectionKey
impl Sync for GenZConnectionKey
impl Unpin for GenZConnectionKey
impl UnwindSafe for GenZConnectionKey
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