pub struct ZipMeta {
pub filename: String,
pub comment: String,
pub modified_unixtime: u32,
pub compression: CompressionMethod,
pub is_dir: bool,
}
Fields§
§filename: String
§comment: String
§modified_unixtime: u32
§compression: CompressionMethod
§is_dir: bool
Trait Implementations§
Source§impl<'__der_lifetime> DecodeValue<'__der_lifetime> for ZipMeta
impl<'__der_lifetime> DecodeValue<'__der_lifetime> for ZipMeta
Source§impl<'__der_lifetime> EncodeValue for ZipMeta
impl<'__der_lifetime> EncodeValue for ZipMeta
impl<'__der_lifetime> Sequence<'__der_lifetime> for ZipMeta
Auto Trait Implementations§
impl Freeze for ZipMeta
impl RefUnwindSafe for ZipMeta
impl Send for ZipMeta
impl Sync for ZipMeta
impl Unpin for ZipMeta
impl UnwindSafe for ZipMeta
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
Source§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
Source§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode for Twhere
T: EncodeValue + Tagged,
Source§fn encoded_len(&self) -> Result<Length, Error>
fn encoded_len(&self) -> Result<Length, Error>
Compute the length of this value in bytes when encoded as ASN.1 DER.
Source§fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
fn encode(&self, writer: &mut impl Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Writer
.
Source§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.