pub enum WirePaneId {
Main,
Sub(u64),
}Expand description
Which conversation a message concerns. Mirrors hrdr_agent::PaneId.
External tagging on purpose: serializes as "main" or {"sub": 7}.
Variants§
Trait Implementations§
Source§impl Clone for WirePaneId
impl Clone for WirePaneId
Source§fn clone(&self) -> WirePaneId
fn clone(&self) -> WirePaneId
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 moreimpl Copy for WirePaneId
Source§impl Debug for WirePaneId
impl Debug for WirePaneId
Source§impl<'de> Deserialize<'de> for WirePaneId
impl<'de> Deserialize<'de> for WirePaneId
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
impl Eq for WirePaneId
Source§impl Hash for WirePaneId
impl Hash for WirePaneId
Source§impl PartialEq for WirePaneId
impl PartialEq for WirePaneId
Source§impl Serialize for WirePaneId
impl Serialize for WirePaneId
impl StructuralPartialEq for WirePaneId
Auto Trait Implementations§
impl Freeze for WirePaneId
impl RefUnwindSafe for WirePaneId
impl Send for WirePaneId
impl Sync for WirePaneId
impl Unpin for WirePaneId
impl UnsafeUnpin for WirePaneId
impl UnwindSafe for WirePaneId
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