pub struct SignedLicense {
pub data: LicenseData,
pub signature: String,
pub algorithm: String,
}Expand description
A signed license containing the data and cryptographic signature
Fields§
§data: LicenseDataThe license data
signature: StringDigital signature (base64 encoded)
algorithm: StringSignature algorithm used
Trait Implementations§
Source§impl Clone for SignedLicense
impl Clone for SignedLicense
Source§fn clone(&self) -> SignedLicense
fn clone(&self) -> SignedLicense
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 SignedLicense
impl Debug for SignedLicense
Source§impl<'de> Deserialize<'de> for SignedLicense
impl<'de> Deserialize<'de> for SignedLicense
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
Auto Trait Implementations§
impl Freeze for SignedLicense
impl RefUnwindSafe for SignedLicense
impl Send for SignedLicense
impl Sync for SignedLicense
impl Unpin for SignedLicense
impl UnsafeUnpin for SignedLicense
impl UnwindSafe for SignedLicense
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