pub enum ClassifiedReleaseFileEntry<'a> {
    Contents(ContentsFileEntry<'a>),
    Packages(PackagesFileEntry<'a>),
    Sources(SourcesFileEntry<'a>),
    Release(ReleaseReleaseFileEntry<'a>),
    AppStreamComponents(AppStreamComponentsEntry<'a>),
    AppStreamIcons(AppStreamIconsFileEntry<'a>),
    Translation(TranslationFileEntry<'a>),
    FileManifest(FileManifestEntry<'a>),
    Other(ReleaseFileEntry<'a>),
}
Expand description

A [In]Release file entry cast to its stronger type, if possible.

Variants

Contents(ContentsFileEntry<'a>)

A Contents file.

Packages(PackagesFileEntry<'a>)

A Packages file.

Sources(SourcesFileEntry<'a>)

A Sources file.

Release(ReleaseReleaseFileEntry<'a>)

A nested Release file.

AppStreamComponents(AppStreamComponentsEntry<'a>)

An AppStream Components YAML file.

AppStreamIcons(AppStreamIconsFileEntry<'a>)

An AppStream Icons file.

Translation(TranslationFileEntry<'a>)

A Translation file.

FileManifest(FileManifestEntry<'a>)

A *SUMS file containing content digests of additional files.

Other(ReleaseFileEntry<'a>)

Some other file type.

Methods from Deref<Target = ReleaseFileEntry<'a>>

Obtain the by-hash path variant for this entry.

Trait Implementations

The resulting type after dereferencing.

Dereferences the value.

Mutably dereferences the value.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more