pub struct PackBuildBytes {
pub filename: String,
pub bytes: Vec<u8>,
pub sha256: String,
pub metadata: PackBuildMetadata,
}Fields§
§filename: String§bytes: Vec<u8>§sha256: String§metadata: PackBuildMetadataTrait Implementations§
Source§impl Clone for PackBuildBytes
impl Clone for PackBuildBytes
Source§fn clone(&self) -> PackBuildBytes
fn clone(&self) -> PackBuildBytes
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PackBuildBytes
impl Debug for PackBuildBytes
Source§impl PartialEq for PackBuildBytes
impl PartialEq for PackBuildBytes
Source§fn eq(&self, other: &PackBuildBytes) -> bool
fn eq(&self, other: &PackBuildBytes) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PackBuildBytes
impl Serialize for PackBuildBytes
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for PackBuildBytes
impl StructuralPartialEq for PackBuildBytes
Auto Trait Implementations§
impl Freeze for PackBuildBytes
impl RefUnwindSafe for PackBuildBytes
impl Send for PackBuildBytes
impl Sync for PackBuildBytes
impl Unpin for PackBuildBytes
impl UnsafeUnpin for PackBuildBytes
impl UnwindSafe for PackBuildBytes
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.