pub struct CryptoFile {
pub file_path: String,
pub crypto_args: Option<CryptoFileArgs>,
pub undocumented: Value,
}Fields§
§file_path: String§crypto_args: Option<CryptoFileArgs>§undocumented: ValueImplementations§
Source§impl CryptoFile
impl CryptoFile
Sourcepub fn builder() -> CryptoFileBuilder
pub fn builder() -> CryptoFileBuilder
Create an instance of CryptoFile using the builder syntax
Trait Implementations§
Source§impl Clone for CryptoFile
impl Clone for CryptoFile
Source§fn clone(&self) -> CryptoFile
fn clone(&self) -> CryptoFile
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 CryptoFile
impl Debug for CryptoFile
Source§impl<'de> Deserialize<'de> for CryptoFile
impl<'de> Deserialize<'de> for CryptoFile
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CryptoFile, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CryptoFile, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<CryptoFile> for Image
impl From<CryptoFile> for Image
Source§fn from(source: CryptoFile) -> Self
fn from(source: CryptoFile) -> Self
Converts to this type from the input type.
Source§impl From<CryptoFile> for Video
impl From<CryptoFile> for Video
Source§fn from(source: CryptoFile) -> Self
fn from(source: CryptoFile) -> Self
Converts to this type from the input type.
Source§impl MessageLike for CryptoFile
impl MessageLike for CryptoFile
type Kind = RichKind
fn into_builder_parts(self) -> (ComposedMessage, RichKind)
Source§impl PartialEq for CryptoFile
impl PartialEq for CryptoFile
Source§fn eq(&self, other: &CryptoFile) -> bool
fn eq(&self, other: &CryptoFile) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CryptoFile
impl Serialize for CryptoFile
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 StructuralPartialEq for CryptoFile
Auto Trait Implementations§
impl Freeze for CryptoFile
impl RefUnwindSafe for CryptoFile
impl Send for CryptoFile
impl Sync for CryptoFile
impl Unpin for CryptoFile
impl UnsafeUnpin for CryptoFile
impl UnwindSafe for CryptoFile
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more