pub enum StreamDataLocation {
User,
Application,
Transport,
Network,
Other(String),
}Variants§
Trait Implementations§
Source§impl Clone for StreamDataLocation
impl Clone for StreamDataLocation
Source§fn clone(&self) -> StreamDataLocation
fn clone(&self) -> StreamDataLocation
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 StreamDataLocation
impl Debug for StreamDataLocation
Source§impl<'de> Deserialize<'de> for StreamDataLocation
impl<'de> Deserialize<'de> for StreamDataLocation
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 From<StreamDataLocation> for StreamDataLocation
impl From<StreamDataLocation> for StreamDataLocation
Source§fn from(value: StreamDataLocation) -> Self
fn from(value: StreamDataLocation) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StreamDataLocation
impl PartialEq for StreamDataLocation
Source§impl Serialize for StreamDataLocation
impl Serialize for StreamDataLocation
impl Eq for StreamDataLocation
impl StructuralPartialEq for StreamDataLocation
Auto Trait Implementations§
impl Freeze for StreamDataLocation
impl RefUnwindSafe for StreamDataLocation
impl Send for StreamDataLocation
impl Sync for StreamDataLocation
impl Unpin for StreamDataLocation
impl UnsafeUnpin for StreamDataLocation
impl UnwindSafe for StreamDataLocation
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