pub enum EmbeddedPluginIntegrity {
Sha256 {
digest: String,
},
AppleCodeSignature {
validation: EmbeddedAppleCodeSignatureValidation,
},
}Variants§
Implementations§
Source§impl EmbeddedPluginIntegrity
impl EmbeddedPluginIntegrity
pub fn sha256_digest(&self) -> Option<&str>
pub const fn apple_code_signature_validation( &self, ) -> Option<EmbeddedAppleCodeSignatureValidation>
Trait Implementations§
Source§impl Clone for EmbeddedPluginIntegrity
impl Clone for EmbeddedPluginIntegrity
Source§fn clone(&self) -> EmbeddedPluginIntegrity
fn clone(&self) -> EmbeddedPluginIntegrity
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 EmbeddedPluginIntegrity
impl Debug for EmbeddedPluginIntegrity
Source§impl<'de> Deserialize<'de> for EmbeddedPluginIntegrity
impl<'de> Deserialize<'de> for EmbeddedPluginIntegrity
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
impl Eq for EmbeddedPluginIntegrity
Source§impl PartialEq for EmbeddedPluginIntegrity
impl PartialEq for EmbeddedPluginIntegrity
impl StructuralPartialEq for EmbeddedPluginIntegrity
Auto Trait Implementations§
impl Freeze for EmbeddedPluginIntegrity
impl RefUnwindSafe for EmbeddedPluginIntegrity
impl Send for EmbeddedPluginIntegrity
impl Sync for EmbeddedPluginIntegrity
impl Unpin for EmbeddedPluginIntegrity
impl UnsafeUnpin for EmbeddedPluginIntegrity
impl UnwindSafe for EmbeddedPluginIntegrity
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.