pub struct InterconnectMacsecConfig {
pub pre_shared_keys: Option<Vec<InterconnectMacsecConfigPreSharedKey>>,
}
Expand description
MACsec configuration information for the Interconnect connection. Contains the generated Connectivity Association Key Name (CKN) and the key (CAK) for this Interconnect connection.
This type is not used in any activity, and only used as part of another schema.
Fields§
A keychain placeholder describing a set of named key objects along with their start times. A MACsec CKN/CAK is generated for each key in the key chain. Google router automatically picks the key with the most recent startTime when establishing or re-establishing a MACsec secure link.
Trait Implementations§
Source§impl Clone for InterconnectMacsecConfig
impl Clone for InterconnectMacsecConfig
Source§fn clone(&self) -> InterconnectMacsecConfig
fn clone(&self) -> InterconnectMacsecConfig
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 InterconnectMacsecConfig
impl Debug for InterconnectMacsecConfig
Source§impl Default for InterconnectMacsecConfig
impl Default for InterconnectMacsecConfig
Source§fn default() -> InterconnectMacsecConfig
fn default() -> InterconnectMacsecConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InterconnectMacsecConfig
impl<'de> Deserialize<'de> for InterconnectMacsecConfig
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 Serialize for InterconnectMacsecConfig
impl Serialize for InterconnectMacsecConfig
impl Part for InterconnectMacsecConfig
Auto Trait Implementations§
impl Freeze for InterconnectMacsecConfig
impl RefUnwindSafe for InterconnectMacsecConfig
impl Send for InterconnectMacsecConfig
impl Sync for InterconnectMacsecConfig
impl Unpin for InterconnectMacsecConfig
impl UnwindSafe for InterconnectMacsecConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more