Skip to main content

BookmarkFile

Struct BookmarkFile 

Source
pub struct BookmarkFile { /* private fields */ }
Expand description

GLib type: Boxed type with copy-on-clone semantics.

Implementations§

Source§

impl BookmarkFile

Source

pub fn as_ptr(&self) -> *mut GBookmarkFile

Return the inner pointer to the underlying C value.

Source

pub unsafe fn from_glib_ptr_borrow(ptr: &*mut GBookmarkFile) -> &Self

Borrows the underlying C value.

Source

pub unsafe fn from_glib_ptr_borrow_mut( ptr: &mut *mut GBookmarkFile, ) -> &mut Self

Borrows the underlying C value mutably.

Source§

impl BookmarkFile

Source

pub fn new() -> BookmarkFile

Source

pub fn add_application( &mut self, uri: &str, name: Option<&str>, exec: Option<&str>, )

Source

pub fn add_group(&mut self, uri: &str, group: &str)

Source

pub fn added(&self, uri: &str) -> Result<time_t, Error>

👎Deprecated:

Since 2.66

Source

pub fn added_date_time(&self, uri: &str) -> Result<DateTime, Error>

Available on crate feature v2_66 only.
Source

pub fn app_info( &self, uri: &str, name: &str, ) -> Result<(GString, u32, time_t), Error>

👎Deprecated:

Since 2.66

Source

pub fn application_info( &self, uri: &str, name: &str, ) -> Result<(GString, u32, DateTime), Error>

Available on crate feature v2_66 only.
Source

pub fn applications(&self, uri: &str) -> Result<Vec<GString>, Error>

Source

pub fn description(&self, uri: &str) -> Result<GString, Error>

Source

pub fn groups(&self, uri: &str) -> Result<Vec<GString>, Error>

Source

pub fn icon(&self, uri: &str) -> Result<(GString, GString), Error>

Source

pub fn is_private(&self, uri: &str) -> Result<(), Error>

Source

pub fn mime_type(&self, uri: &str) -> Result<GString, Error>

Source

pub fn modified(&self, uri: &str) -> Result<time_t, Error>

👎Deprecated:

Since 2.66

Source

pub fn modified_date_time(&self, uri: &str) -> Result<DateTime, Error>

Available on crate feature v2_66 only.
Source

pub fn size(&self) -> i32

Source

pub fn title(&self, uri: Option<&str>) -> Result<GString, Error>

Source

pub fn uris(&self) -> Vec<GString>

Source

pub fn visited(&self, uri: &str) -> Result<time_t, Error>

👎Deprecated:

Since 2.66

Source

pub fn visited_date_time(&self, uri: &str) -> Result<DateTime, Error>

Available on crate feature v2_66 only.
Source

pub fn has_application(&self, uri: &str, name: &str) -> Result<(), Error>

Source

pub fn has_group(&self, uri: &str, group: &str) -> Result<(), Error>

Source

pub fn has_item(&self, uri: &str) -> bool

Source

pub fn load_from_data(&mut self, data: &[u8]) -> Result<(), Error>

Source

pub fn load_from_data_dirs( &mut self, file: impl AsRef<Path>, ) -> Result<PathBuf, Error>

Source

pub fn load_from_file( &mut self, filename: impl AsRef<Path>, ) -> Result<(), Error>

Source

pub fn move_item( &mut self, old_uri: &str, new_uri: Option<&str>, ) -> Result<(), Error>

Source

pub fn remove_application(&mut self, uri: &str, name: &str) -> Result<(), Error>

Source

pub fn remove_group(&mut self, uri: &str, group: &str) -> Result<(), Error>

Source

pub fn remove_item(&mut self, uri: &str) -> Result<(), Error>

Source

pub fn set_added(&mut self, uri: &str, added: time_t)

👎Deprecated:

Since 2.66

Source

pub fn set_added_date_time(&mut self, uri: &str, added: &DateTime)

Available on crate feature v2_66 only.
Source

pub fn set_app_info( &mut self, uri: &str, name: &str, exec: &str, count: i32, stamp: time_t, ) -> Result<(), Error>

👎Deprecated:

Since 2.66

Source

pub fn set_application_info( &mut self, uri: &str, name: &str, exec: &str, count: i32, stamp: Option<&DateTime>, ) -> Result<(), Error>

Available on crate feature v2_66 only.
Source

pub fn set_description(&mut self, uri: Option<&str>, description: &str)

Source

pub fn set_groups(&mut self, uri: &str, groups: &[&str])

Source

pub fn set_icon(&mut self, uri: &str, href: Option<&str>, mime_type: &str)

Source

pub fn set_is_private(&mut self, uri: &str, is_private: bool)

Source

pub fn set_mime_type(&mut self, uri: &str, mime_type: &str)

Source

pub fn set_modified(&mut self, uri: &str, modified: time_t)

👎Deprecated:

Since 2.66

Source

pub fn set_modified_date_time(&mut self, uri: &str, modified: &DateTime)

Available on crate feature v2_66 only.
Source

pub fn set_title(&mut self, uri: Option<&str>, title: &str)

Source

pub fn set_visited(&mut self, uri: &str, visited: time_t)

👎Deprecated:

Since 2.66

Source

pub fn set_visited_date_time(&mut self, uri: &str, visited: &DateTime)

Available on crate feature v2_66 only.
Source

pub fn to_data(&self) -> Result<Vec<u8>, Error>

Source

pub fn to_file(&self, filename: impl AsRef<Path>) -> Result<(), Error>

Trait Implementations§

Source§

impl Clone for BookmarkFile

Source§

fn clone(&self) -> Self

Copies the boxed type with the type-specific copy function.

1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for BookmarkFile

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for BookmarkFile

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl From<BookmarkFile> for Value

Source§

fn from(o: BookmarkFile) -> Self

Converts to this type from the input type.
Source§

impl HasParamSpec for BookmarkFile

Source§

type ParamSpec = ParamSpecBoxed

Source§

type SetValue = BookmarkFile

Preferred value to be used as setter for the associated ParamSpec.
Source§

type BuilderFn = fn(&str) -> ParamSpecBoxedBuilder<'_, BookmarkFile>

Source§

fn param_spec_builder() -> Self::BuilderFn

Source§

impl Hash for BookmarkFile

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for BookmarkFile

Source§

fn cmp(&self, other: &BookmarkFile) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for BookmarkFile

Source§

fn eq(&self, other: &BookmarkFile) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for BookmarkFile

Source§

fn partial_cmp(&self, other: &BookmarkFile) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl StaticType for BookmarkFile

Source§

fn static_type() -> Type

Returns the type identifier of Self.
Source§

impl Eq for BookmarkFile

Source§

impl StructuralPartialEq for BookmarkFile

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for T

Source§

unsafe fn from_glib_none_num_as_vec(ptr: *const GList, num: usize) -> Vec<T>

Source§

unsafe fn from_glib_container_num_as_vec(_: *const GList, _: usize) -> Vec<T>

Source§

unsafe fn from_glib_full_num_as_vec(_: *const GList, _: usize) -> Vec<T>

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for T

Source§

unsafe fn from_glib_none_num_as_vec(ptr: *const GPtrArray, num: usize) -> Vec<T>

Source§

unsafe fn from_glib_container_num_as_vec( _: *const GPtrArray, _: usize, ) -> Vec<T>

Source§

unsafe fn from_glib_full_num_as_vec(_: *const GPtrArray, _: usize) -> Vec<T>

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for T

Source§

unsafe fn from_glib_none_num_as_vec(ptr: *const GSList, num: usize) -> Vec<T>

Source§

unsafe fn from_glib_container_num_as_vec(_: *const GSList, _: usize) -> Vec<T>

Source§

unsafe fn from_glib_full_num_as_vec(_: *const GSList, _: usize) -> Vec<T>

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for T

Source§

unsafe fn from_glib_none_num_as_vec(ptr: *mut GList, num: usize) -> Vec<T>

Source§

unsafe fn from_glib_container_num_as_vec(ptr: *mut GList, num: usize) -> Vec<T>

Source§

unsafe fn from_glib_full_num_as_vec(ptr: *mut GList, num: usize) -> Vec<T>

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for T

Source§

unsafe fn from_glib_none_num_as_vec(ptr: *mut GPtrArray, num: usize) -> Vec<T>

Source§

unsafe fn from_glib_container_num_as_vec( ptr: *mut GPtrArray, num: usize, ) -> Vec<T>

Source§

unsafe fn from_glib_full_num_as_vec(ptr: *mut GPtrArray, num: usize) -> Vec<T>

Source§

impl<T> FromGlibContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for T

Source§

unsafe fn from_glib_none_num_as_vec(ptr: *mut GSList, num: usize) -> Vec<T>

Source§

unsafe fn from_glib_container_num_as_vec(ptr: *mut GSList, num: usize) -> Vec<T>

Source§

unsafe fn from_glib_full_num_as_vec(ptr: *mut GSList, num: usize) -> Vec<T>

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GList> for T

Source§

unsafe fn from_glib_none_as_vec(ptr: *const GList) -> Vec<T>

Source§

unsafe fn from_glib_container_as_vec(_: *const GList) -> Vec<T>

Source§

unsafe fn from_glib_full_as_vec(_: *const GList) -> Vec<T>

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GPtrArray> for T

Source§

unsafe fn from_glib_none_as_vec(ptr: *const GPtrArray) -> Vec<T>

Source§

unsafe fn from_glib_container_as_vec(_: *const GPtrArray) -> Vec<T>

Source§

unsafe fn from_glib_full_as_vec(_: *const GPtrArray) -> Vec<T>

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *const GSList> for T

Source§

unsafe fn from_glib_none_as_vec(ptr: *const GSList) -> Vec<T>

Source§

unsafe fn from_glib_container_as_vec(_: *const GSList) -> Vec<T>

Source§

unsafe fn from_glib_full_as_vec(_: *const GSList) -> Vec<T>

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GList> for T

Source§

unsafe fn from_glib_none_as_vec(ptr: *mut GList) -> Vec<T>

Source§

unsafe fn from_glib_container_as_vec(ptr: *mut GList) -> Vec<T>

Source§

unsafe fn from_glib_full_as_vec(ptr: *mut GList) -> Vec<T>

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GPtrArray> for T

Source§

unsafe fn from_glib_none_as_vec(ptr: *mut GPtrArray) -> Vec<T>

Source§

unsafe fn from_glib_container_as_vec(ptr: *mut GPtrArray) -> Vec<T>

Source§

unsafe fn from_glib_full_as_vec(ptr: *mut GPtrArray) -> Vec<T>

Source§

impl<T> FromGlibPtrArrayContainerAsVec<<T as GlibPtrDefault>::GlibType, *mut GSList> for T

Source§

unsafe fn from_glib_none_as_vec(ptr: *mut GSList) -> Vec<T>

Source§

unsafe fn from_glib_container_as_vec(ptr: *mut GSList) -> Vec<T>

Source§

unsafe fn from_glib_full_as_vec(ptr: *mut GSList) -> Vec<T>

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoClosureReturnValue for T
where T: Into<Value>,

Source§

impl<T> Property for T
where T: HasParamSpec,

Source§

type Value = T

Source§

impl<T> PropertyGet for T
where T: HasParamSpec,

Source§

type Value = T

Source§

fn get<R, F>(&self, f: F) -> R
where F: Fn(&<T as PropertyGet>::Value) -> R,

Source§

impl<T> StaticTypeExt for T
where T: StaticType,

Source§

fn ensure_type()

Ensures that the type has been registered with the type system.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> TransparentType for T

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T> TryFromClosureReturnValue for T
where T: for<'a> FromValue<'a> + StaticType + 'static,

Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<'a, T, C, E> FromValueOptional<'a> for T
where T: FromValue<'a, Checker = C>, C: ValueTypeChecker<Error = ValueTypeMismatchOrNoneError<E>>, E: Error + Send + 'static,