Struct gapi_grpc::google::devtools::resultstore::v2::ArchiveEntry[][src]

pub struct ArchiveEntry {
    pub path: String,
    pub length: Option<i64>,
    pub content_type: String,
}

Information specific to an entry in an archive.

Fields

path: String

The relative path of the entry within the archive.

length: Option<i64>

The uncompressed length of the archive entry in bytes. Allows the entry size to be shown in the UI. Omit if the length is not known.

content_type: String

The content-type (aka MIME-type) of the archive entry. (e.g. text/plain, image/jpeg, text/html, etc). This is sent to the web browser so it knows how to handle the entry.

Trait Implementations

impl Clone for ArchiveEntry[src]

impl Debug for ArchiveEntry[src]

impl Default for ArchiveEntry[src]

impl Message for ArchiveEntry[src]

impl PartialEq<ArchiveEntry> for ArchiveEntry[src]

impl StructuralPartialEq for ArchiveEntry[src]

Auto Trait Implementations

impl RefUnwindSafe for ArchiveEntry

impl Send for ArchiveEntry

impl Sync for ArchiveEntry

impl Unpin for ArchiveEntry

impl UnwindSafe for ArchiveEntry

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<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]