pub struct KeyFile(/* private fields */);
Implementations§
Source§impl KeyFile
impl KeyFile
pub fn new() -> KeyFile
pub fn get_comment( &self, group_name: Option<&str>, key: &str, ) -> Result<GString, Error>
pub fn get_double(&self, group_name: &str, key: &str) -> Result<f64, Error>
pub fn get_double_list( &self, group_name: &str, key: &str, ) -> Result<Vec<f64>, Error>
pub fn get_groups(&self) -> (Vec<GString>, usize)
pub fn get_int64(&self, group_name: &str, key: &str) -> Result<i64, Error>
pub fn get_integer(&self, group_name: &str, key: &str) -> Result<i32, Error>
pub fn get_integer_list( &self, group_name: &str, key: &str, ) -> Result<Vec<i32>, Error>
pub fn get_keys(&self, group_name: &str) -> Result<(Vec<GString>, usize), Error>
pub fn get_locale_string( &self, group_name: &str, key: &str, locale: Option<&str>, ) -> Result<GString, Error>
pub fn get_locale_string_list( &self, group_name: &str, key: &str, locale: Option<&str>, ) -> Result<Vec<GString>, Error>
pub fn get_start_group(&self) -> Option<GString>
pub fn get_string(&self, group_name: &str, key: &str) -> Result<GString, Error>
pub fn get_string_list( &self, group_name: &str, key: &str, ) -> Result<Vec<GString>, Error>
pub fn get_uint64(&self, group_name: &str, key: &str) -> Result<u64, Error>
pub fn get_value(&self, group_name: &str, key: &str) -> Result<GString, Error>
pub fn has_group(&self, group_name: &str) -> bool
pub fn load_from_data( &self, data: &str, flags: KeyFileFlags, ) -> Result<(), Error>
pub fn load_from_file<P: AsRef<Path>>( &self, file: P, 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)
Source§impl 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 get_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 get_boolean_list( &self, group_name: &str, key: &str, ) -> Result<Vec<bool>, Error>
Trait Implementations§
Source§impl Ord for KeyFile
impl Ord for KeyFile
Source§impl PartialOrd for KeyFile
impl PartialOrd for KeyFile
Source§impl StaticType for KeyFile
impl StaticType for KeyFile
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.impl Eq for KeyFile
impl StructuralPartialEq for KeyFile
Auto Trait Implementations§
impl Freeze for KeyFile
impl RefUnwindSafe for KeyFile
impl !Send for KeyFile
impl !Sync for KeyFile
impl Unpin for KeyFile
impl UnwindSafe for KeyFile
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