pub struct RailItemInfo {
pub node_id: u64,
pub title: String,
pub app_id: Option<String>,
pub pinned: bool,
pub focused: bool,
}Fields§
§node_id: u64§title: String§app_id: Option<String>§pinned: bool§focused: boolTrait Implementations§
Source§impl Clone for RailItemInfo
impl Clone for RailItemInfo
Source§fn clone(&self) -> RailItemInfo
fn clone(&self) -> RailItemInfo
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 RailItemInfo
impl Debug for RailItemInfo
Source§impl<'de> Deserialize<'de> for RailItemInfo
impl<'de> Deserialize<'de> for RailItemInfo
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 RailItemInfo
Source§impl PartialEq for RailItemInfo
impl PartialEq for RailItemInfo
Source§fn eq(&self, other: &RailItemInfo) -> bool
fn eq(&self, other: &RailItemInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RailItemInfo
impl Serialize for RailItemInfo
impl StructuralPartialEq for RailItemInfo
Auto Trait Implementations§
impl Freeze for RailItemInfo
impl RefUnwindSafe for RailItemInfo
impl Send for RailItemInfo
impl Sync for RailItemInfo
impl Unpin for RailItemInfo
impl UnsafeUnpin for RailItemInfo
impl UnwindSafe for RailItemInfo
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