#[repr(transparent)]pub struct KeyFile { /* private fields */ }
Implementations
sourceimpl KeyFile
impl KeyFile
pub fn new() -> KeyFile
pub fn comment(
&self,
group_name: Option<&str>,
key: Option<&str>
) -> Result<GString, Error>
pub fn double(&self, group_name: &str, key: &str) -> Result<f64, Error>
pub fn double_list(&self, group_name: &str, key: &str) -> Result<Vec<f64>, Error>
pub fn groups(&self) -> (Vec<GString>, usize)
pub fn int64(&self, group_name: &str, key: &str) -> Result<i64, Error>
pub fn integer(&self, group_name: &str, key: &str) -> Result<i32, Error>
pub fn integer_list(&self, group_name: &str, key: &str) -> Result<Vec<i32>, Error>
pub fn keys(&self, group_name: &str) -> Result<(Vec<GString>, usize), Error>
pub fn locale_for_key(
&self,
group_name: &str,
key: &str,
locale: Option<&str>
) -> Option<GString>
pub fn start_group(&self) -> Option<GString>
pub fn uint64(&self, group_name: &str, key: &str) -> Result<u64, Error>
pub fn value(&self, group_name: &str, key: &str) -> Result<GString, Error>
pub fn has_group(&self, group_name: &str) -> bool
pub fn load_from_bytes(
&self,
bytes: &Bytes,
flags: KeyFileFlags
) -> Result<(), Error>
pub fn load_from_data(&self, data: &str, flags: KeyFileFlags) -> Result<(), Error>
pub fn load_from_file(
&self,
file: impl AsRef<Path>,
flags: KeyFileFlags
) -> Result<(), Error>
pub fn remove_comment(
&self,
group_name: Option<&str>,
key: Option<&str>
) -> Result<(), Error>
pub fn remove_group(&self, group_name: &str) -> Result<(), Error>
pub fn remove_key(&self, group_name: &str, key: &str) -> Result<(), Error>
pub fn set_boolean(&self, group_name: &str, key: &str, value: bool)
pub fn set_comment(
&self,
group_name: Option<&str>,
key: Option<&str>,
comment: &str
) -> Result<(), Error>
pub fn set_double(&self, group_name: &str, key: &str, value: f64)
pub fn set_int64(&self, group_name: &str, key: &str, value: i64)
pub fn set_integer(&self, group_name: &str, key: &str, value: i32)
pub fn set_list_separator(&self, separator: Char)
pub fn set_locale_string(
&self,
group_name: &str,
key: &str,
locale: &str,
string: &str
)
pub fn set_string(&self, group_name: &str, key: &str, string: &str)
pub fn set_uint64(&self, group_name: &str, key: &str, value: u64)
pub fn set_value(&self, group_name: &str, key: &str, value: &str)
sourceimpl KeyFile
impl KeyFile
pub fn save_to_file<T: AsRef<Path>>(&self, filename: T) -> Result<(), Error>
pub fn load_from_data_dirs<T: AsRef<Path>>(
&self,
file: T,
flags: KeyFileFlags
) -> Result<PathBuf, Error>
pub fn load_from_dirs<T: AsRef<Path>, U: AsRef<Path>>(
&self,
file: T,
search_dirs: &[U],
flags: KeyFileFlags
) -> Result<PathBuf, Error>
pub fn to_data(&self) -> GString
pub fn boolean(&self, group_name: &str, key: &str) -> Result<bool, Error>
pub fn has_key(&self, group_name: &str, key: &str) -> Result<bool, Error>
pub fn boolean_list(
&self,
group_name: &str,
key: &str
) -> Result<Vec<bool>, Error>
pub fn string(&self, group_name: &str, key: &str) -> Result<GString, Error>
pub fn string_list(
&self,
group_name: &str,
key: &str
) -> Result<Vec<GString>, Error>
pub fn locale_string(
&self,
group_name: &str,
key: &str,
locale: Option<&str>
) -> Result<GString, Error>
pub fn locale_string_list(
&self,
group_name: &str,
key: &str,
locale: Option<&str>
) -> Result<Vec<GString>, Error>
Trait Implementations
sourceimpl Ord for KeyFile
impl Ord for KeyFile
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<KeyFile> for KeyFile
impl PartialEq<KeyFile> for KeyFile
sourceimpl PartialOrd<KeyFile> for KeyFile
impl PartialOrd<KeyFile> for KeyFile
sourcefn partial_cmp(&self, other: &KeyFile) -> Option<Ordering>
fn partial_cmp(&self, other: &KeyFile) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl StaticType for KeyFile
impl StaticType for KeyFile
sourcefn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of Self
.
impl Eq for KeyFile
impl StructuralEq for KeyFile
impl StructuralPartialEq for KeyFile
Auto Trait Implementations
impl RefUnwindSafe for KeyFile
impl !Send for KeyFile
impl !Sync for KeyFile
impl Unpin for KeyFile
impl UnwindSafe for KeyFile
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> StaticTypeExt for T where
T: StaticType,
impl<T> StaticTypeExt for T where
T: StaticType,
sourcefn ensure_type()
fn ensure_type()
Ensures that the type has been registered with the type system.