Enum srt_protocol::access::ConnectionType  
source · #[non_exhaustive]pub enum ConnectionType {
    Stream,
    File,
    Auth,
}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.
Trait Implementations§
source§impl Clone for ConnectionType
 
impl Clone for ConnectionType
source§fn clone(&self) -> ConnectionType
 
fn clone(&self) -> ConnectionType
Returns a copy 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 ConnectionType
 
impl Debug for ConnectionType
source§impl Display for ConnectionType
 
impl Display for ConnectionType
source§impl FromStr for ConnectionType
 
impl FromStr for ConnectionType
source§impl PartialEq<ConnectionType> for ConnectionType
 
impl PartialEq<ConnectionType> for ConnectionType
source§fn eq(&self, other: &ConnectionType) -> bool
 
fn eq(&self, other: &ConnectionType) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Copy for ConnectionType
impl Eq for ConnectionType
impl StructuralEq for ConnectionType
impl StructuralPartialEq for ConnectionType
Auto Trait Implementations§
impl RefUnwindSafe for ConnectionType
impl Send for ConnectionType
impl Sync for ConnectionType
impl Unpin for ConnectionType
impl UnwindSafe for ConnectionType
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<Q, K> Equivalent<K> for Qwhere
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized,
 
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.