[][src]Struct fwupd_dbus::Release

pub struct Release {
    pub appstream_id: Box<str>,
    pub categories: Box<[Box<str>]>,
    pub checksums: Box<[Box<str>]>,
    pub created: u64,
    pub description: Box<str>,
    pub details_url: Option<Box<str>>,
    pub filename: Box<str>,
    pub flags: ReleaseFlags,
    pub homepage: Box<str>,
    pub install_duration: u32,
    pub license: Box<str>,
    pub name: Box<str>,
    pub protocol: Option<Box<str>>,
    pub remote_id: RemoteId,
    pub size: u64,
    pub source_url: Option<Box<str>>,
    pub summary: Box<str>,
    pub trust_flags: TrustFlags,
    pub update_message: Option<Box<str>>,
    pub uri: Box<str>,
    pub vendor: Box<str>,
    pub version: Box<str>,
}

Information about an available fwupd remote.

Fields

appstream_id: Box<str>categories: Box<[Box<str>]>checksums: Box<[Box<str>]>created: u64description: Box<str>details_url: Option<Box<str>>filename: Box<str>flags: ReleaseFlagshomepage: Box<str>install_duration: u32license: Box<str>name: Box<str>protocol: Option<Box<str>>remote_id: RemoteIdsize: u64source_url: Option<Box<str>>summary: Box<str>trust_flags: TrustFlagsupdate_message: Option<Box<str>>uri: Box<str>vendor: Box<str>version: Box<str>

Trait Implementations

impl AsRef<RemoteId> for Release[src]

impl Clone for Release[src]

impl Debug for Release[src]

impl Default for Release[src]

impl Eq for Release[src]

impl FromIterator<(String, Variant<Box<dyn RefArg + 'static>>)> for Release[src]

impl Ord for Release[src]

impl PartialEq<Release> for Release[src]

impl PartialOrd<Release> for Release[src]

impl StructuralEq for Release[src]

Auto Trait Implementations

impl RefUnwindSafe for Release

impl Send for Release

impl Sync for Release

impl Unpin for Release

impl UnwindSafe for Release

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.