pub struct PaneId(/* private fields */);Expand description
Stable per-server pane identity (%N).
PaneId is the numeric identity rendered as %N by tmux-compatible
formats. Allocation lives in rmux-core::session::SessionStore; the
type defined here is the storable, transferable identity value.
Implementations§
Trait Implementations§
impl Copy for PaneId
Source§impl<'de> Deserialize<'de> for PaneId
impl<'de> Deserialize<'de> for PaneId
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PaneId, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PaneId, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PaneId
Source§impl Ord for PaneId
impl Ord for PaneId
1.21.0 (const: unstable) · 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 PartialOrd for PaneId
impl PartialOrd for PaneId
Source§impl Serialize for PaneId
impl Serialize for PaneId
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PaneId
Auto Trait Implementations§
impl Freeze for PaneId
impl RefUnwindSafe for PaneId
impl Send for PaneId
impl Sync for PaneId
impl Unpin for PaneId
impl UnsafeUnpin for PaneId
impl UnwindSafe for PaneId
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