pub enum AuditConnectionType {
Rendezvous,
Psk,
}Expand description
How a new connection was established between devices.
Variants§
Rendezvous
Paired using a 9-character rendezvous code exchanged out-of-band. Requires explicit fingerprint verification before the connection is trusted.
Psk
Paired using a pre-shared key (PSK) token. Trust is established through the shared secret — no fingerprint verification needed.
Trait Implementations§
Source§impl Clone for AuditConnectionType
impl Clone for AuditConnectionType
Source§fn clone(&self) -> AuditConnectionType
fn clone(&self) -> AuditConnectionType
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 AuditConnectionType
impl Debug for AuditConnectionType
Source§impl PartialEq for AuditConnectionType
impl PartialEq for AuditConnectionType
impl Copy for AuditConnectionType
impl Eq for AuditConnectionType
impl StructuralPartialEq for AuditConnectionType
Auto Trait Implementations§
impl Freeze for AuditConnectionType
impl RefUnwindSafe for AuditConnectionType
impl Send for AuditConnectionType
impl Sync for AuditConnectionType
impl Unpin for AuditConnectionType
impl UnsafeUnpin for AuditConnectionType
impl UnwindSafe for AuditConnectionType
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