pub struct RemapProfileInfo {
pub name: String,
pub description: Option<String>,
pub remap_count: usize,
}Expand description
Information about a remap profile for listing
Fields§
§name: StringProfile name
description: Option<String>Human-readable description
remap_count: usizeNumber of remaps in this profile
Trait Implementations§
Source§impl Clone for RemapProfileInfo
impl Clone for RemapProfileInfo
Source§fn clone(&self) -> RemapProfileInfo
fn clone(&self) -> RemapProfileInfo
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 RemapProfileInfo
impl Debug for RemapProfileInfo
Source§impl<'de> Deserialize<'de> for RemapProfileInfo
impl<'de> Deserialize<'de> for RemapProfileInfo
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 PartialEq for RemapProfileInfo
impl PartialEq for RemapProfileInfo
Source§impl Serialize for RemapProfileInfo
impl Serialize for RemapProfileInfo
impl StructuralPartialEq for RemapProfileInfo
Auto Trait Implementations§
impl Freeze for RemapProfileInfo
impl RefUnwindSafe for RemapProfileInfo
impl Send for RemapProfileInfo
impl Sync for RemapProfileInfo
impl Unpin for RemapProfileInfo
impl UnsafeUnpin for RemapProfileInfo
impl UnwindSafe for RemapProfileInfo
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