#[non_exhaustive]pub enum TransportTag {
Tcp,
WebSocket,
Quic,
Uds,
WebTransport,
Stdio,
}Expand description
One of the transports a feed can be exposed over.
Mirrors the transports lightstream supports today.
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 TransportTag
impl Clone for TransportTag
Source§fn clone(&self) -> TransportTag
fn clone(&self) -> TransportTag
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 TransportTag
impl Debug for TransportTag
Source§impl<'de> Deserialize<'de> for TransportTag
impl<'de> Deserialize<'de> for TransportTag
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 Hash for TransportTag
impl Hash for TransportTag
Source§impl PartialEq for TransportTag
impl PartialEq for TransportTag
Source§fn eq(&self, other: &TransportTag) -> bool
fn eq(&self, other: &TransportTag) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TransportTag
impl Serialize for TransportTag
impl Copy for TransportTag
impl Eq for TransportTag
impl StructuralPartialEq for TransportTag
Auto Trait Implementations§
impl Freeze for TransportTag
impl RefUnwindSafe for TransportTag
impl Send for TransportTag
impl Sync for TransportTag
impl Unpin for TransportTag
impl UnsafeUnpin for TransportTag
impl UnwindSafe for TransportTag
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