pub struct PackageVerificationCode {
pub value: String,
pub excludes: Vec<String>,
}Expand description
Fields§
§value: StringValue of the verification code.
excludes: Vec<String>Files that were excluded when calculating the verification code.
Implementations§
Trait Implementations§
Source§impl Clone for PackageVerificationCode
impl Clone for PackageVerificationCode
Source§fn clone(&self) -> PackageVerificationCode
fn clone(&self) -> PackageVerificationCode
Returns a duplicate of the value. Read more
1.0.0 · 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 PackageVerificationCode
impl Debug for PackageVerificationCode
Source§impl<'de> Deserialize<'de> for PackageVerificationCode
impl<'de> Deserialize<'de> for PackageVerificationCode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PackageVerificationCode
impl PartialEq for PackageVerificationCode
Source§impl PartialOrd for PackageVerificationCode
impl PartialOrd for PackageVerificationCode
Source§impl Serialize for PackageVerificationCode
impl Serialize for PackageVerificationCode
impl Eq for PackageVerificationCode
impl StructuralPartialEq for PackageVerificationCode
Auto Trait Implementations§
impl Freeze for PackageVerificationCode
impl RefUnwindSafe for PackageVerificationCode
impl Send for PackageVerificationCode
impl Sync for PackageVerificationCode
impl Unpin for PackageVerificationCode
impl UnwindSafe for PackageVerificationCode
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