pub struct Connection {Show 15 fields
pub odata_context: Option<Context>,
pub odata_etag: Option<Etag>,
pub odata_id: Id,
pub odata_type: Type,
pub actions: Option<Actions>,
pub connection_keys: Option<ConnectionKey>,
pub connection_type: Option<ConnectionType>,
pub description: Option<Description>,
pub id: Id,
pub links: Option<Links>,
pub memory_chunk_info: Option<Vec<MemoryChunkInfo>>,
pub name: Name,
pub oem: Option<Oem>,
pub status: Option<Status>,
pub volume_info: Option<Vec<VolumeInfo>>,
}
Expand description
The Connection schema describes the access permissions endpoints, or groups of endpoints, have with other resources in the service.
Fields§
§odata_context: Option<Context>
§odata_etag: Option<Etag>
§odata_id: Id
§odata_type: Type
§actions: Option<Actions>
§connection_keys: Option<ConnectionKey>
§connection_type: Option<ConnectionType>
§description: Option<Description>
§id: Id
§links: Option<Links>
§memory_chunk_info: Option<Vec<MemoryChunkInfo>>
The set of memory chunks and access capabilities specified for this connection.
name: Name
§oem: Option<Oem>
§status: Option<Status>
§volume_info: Option<Vec<VolumeInfo>>
The set of volumes and access capabilities specified for this connection.
Trait Implementations§
Source§impl Clone for Connection
impl Clone for Connection
Source§fn clone(&self) -> Connection
fn clone(&self) -> Connection
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 Connection
impl Debug for Connection
Source§impl Default for Connection
impl Default for Connection
Source§impl<'de> Deserialize<'de> for Connection
impl<'de> Deserialize<'de> for Connection
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 Connection
impl Metadata<'static> for Connection
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 Connection
impl RefUnwindSafe for Connection
impl Send for Connection
impl Sync for Connection
impl Unpin for Connection
impl UnwindSafe for Connection
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