#[non_exhaustive]pub enum EdgeIdentityMode {
Static,
Ephemeral,
}Expand description
Edge-Identity-Mode.
Architektur-Referenz: 09_delegation.md §5 (Edge-Identities).
Static = stabile GuidPrefix ueber Restart hinweg, manuell
konfiguriert. Ephemeral = pseudozufaellige GuidPrefix mit
Lifetime-Rotation, fuer Privacy-/Replay-Resistenz.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Static
Stabiler Prefix, kein Auto-Rotate.
Ephemeral
Auto-Rotate nach lifetime_seconds ohne expliziten Trigger.
Trait Implementations§
Source§impl Clone for EdgeIdentityMode
impl Clone for EdgeIdentityMode
Source§fn clone(&self) -> EdgeIdentityMode
fn clone(&self) -> EdgeIdentityMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EdgeIdentityMode
impl Debug for EdgeIdentityMode
Source§impl Default for EdgeIdentityMode
impl Default for EdgeIdentityMode
Source§fn default() -> EdgeIdentityMode
fn default() -> EdgeIdentityMode
Returns the “default value” for a type. Read more
Source§impl Hash for EdgeIdentityMode
impl Hash for EdgeIdentityMode
Source§impl PartialEq for EdgeIdentityMode
impl PartialEq for EdgeIdentityMode
Source§fn eq(&self, other: &EdgeIdentityMode) -> bool
fn eq(&self, other: &EdgeIdentityMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for EdgeIdentityMode
impl Eq for EdgeIdentityMode
impl StructuralPartialEq for EdgeIdentityMode
Auto Trait Implementations§
impl Freeze for EdgeIdentityMode
impl RefUnwindSafe for EdgeIdentityMode
impl Send for EdgeIdentityMode
impl Sync for EdgeIdentityMode
impl Unpin for EdgeIdentityMode
impl UnsafeUnpin for EdgeIdentityMode
impl UnwindSafe for EdgeIdentityMode
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