Struct xcursor::CursorThemeIml
source · pub(crate) struct CursorThemeIml {
pub(crate) name: String,
pub(crate) data: Vec<(PathBuf, Option<String>)>,
}
Fields§
§name: String
Theme name.
data: Vec<(PathBuf, Option<String>)>
Directories where the theme is presented and corresponding names of inherited themes.
None
if theme inherits nothing.
Implementations§
Trait Implementations§
source§impl Clone for CursorThemeIml
impl Clone for CursorThemeIml
source§fn clone(&self) -> CursorThemeIml
fn clone(&self) -> CursorThemeIml
Returns a copy 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 CursorThemeIml
impl Debug for CursorThemeIml
source§impl PartialEq for CursorThemeIml
impl PartialEq for CursorThemeIml
source§fn eq(&self, other: &CursorThemeIml) -> bool
fn eq(&self, other: &CursorThemeIml) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for CursorThemeIml
impl StructuralPartialEq for CursorThemeIml
Auto Trait Implementations§
impl Freeze for CursorThemeIml
impl RefUnwindSafe for CursorThemeIml
impl Send for CursorThemeIml
impl Sync for CursorThemeIml
impl Unpin for CursorThemeIml
impl UnwindSafe for CursorThemeIml
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