pub enum BandRef<'a> {
Data(&'a [u8]),
Progress(&'a [u8]),
Error(&'a [u8]),
}
Expand description
A band in a side-band channel.
Variants§
Data(&'a [u8])
A band carrying data.
Progress(&'a [u8])
A band carrying user readable progress information.
Error(&'a [u8])
A band carrying user readable errors.
Implementations§
Trait Implementations§
Source§impl<'de: 'a, 'a> Deserialize<'de> for BandRef<'a>
impl<'de: 'a, 'a> Deserialize<'de> for BandRef<'a>
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<'a> Ord for BandRef<'a>
impl<'a> Ord for BandRef<'a>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> PartialOrd for BandRef<'a>
impl<'a> PartialOrd for BandRef<'a>
impl<'a> Copy for BandRef<'a>
impl<'a> Eq for BandRef<'a>
impl<'a> StructuralPartialEq for BandRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for BandRef<'a>
impl<'a> RefUnwindSafe for BandRef<'a>
impl<'a> Send for BandRef<'a>
impl<'a> Sync for BandRef<'a>
impl<'a> Unpin for BandRef<'a>
impl<'a> UnwindSafe for BandRef<'a>
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