Enum fontconfig_parser::ConfigPart
source · pub enum ConfigPart {
Description(String),
SelectFont(SelectFont),
Dir(Dir),
CacheDir(CacheDir),
Include(Include),
Match(Match),
Config(Config),
Alias(Alias),
RemapDir(RemapDir),
ResetDirs,
}
Variants§
Description(String)
SelectFont(SelectFont)
Dir(Dir)
CacheDir(CacheDir)
Include(Include)
Match(Match)
Config(Config)
Alias(Alias)
RemapDir(RemapDir)
ResetDirs
Trait Implementations§
source§impl Clone for ConfigPart
impl Clone for ConfigPart
source§fn clone(&self) -> ConfigPart
fn clone(&self) -> ConfigPart
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 ConfigPart
impl Debug for ConfigPart
source§impl From<Alias> for ConfigPart
impl From<Alias> for ConfigPart
source§impl From<CacheDir> for ConfigPart
impl From<CacheDir> for ConfigPart
source§impl From<Config> for ConfigPart
impl From<Config> for ConfigPart
source§impl From<Dir> for ConfigPart
impl From<Dir> for ConfigPart
source§impl From<Include> for ConfigPart
impl From<Include> for ConfigPart
source§impl From<Match> for ConfigPart
impl From<Match> for ConfigPart
source§impl From<RemapDir> for ConfigPart
impl From<RemapDir> for ConfigPart
source§impl From<SelectFont> for ConfigPart
impl From<SelectFont> for ConfigPart
source§fn from(v: SelectFont) -> Self
fn from(v: SelectFont) -> Self
Converts to this type from the input type.
source§impl PartialEq<ConfigPart> for ConfigPart
impl PartialEq<ConfigPart> for ConfigPart
source§fn eq(&self, other: &ConfigPart) -> bool
fn eq(&self, other: &ConfigPart) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ConfigPart
Auto Trait Implementations§
impl RefUnwindSafe for ConfigPart
impl Send for ConfigPart
impl Sync for ConfigPart
impl Unpin for ConfigPart
impl UnwindSafe for ConfigPart
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