pub struct SignDocSpec {
pub permitted_mime_types: Vec<String>,
pub permitted_formats: Vec<SignatureFormat>,
}Expand description
Spec for SignDocument operations.
Fields§
§permitted_mime_types: Vec<String>Permitted document MIME types.
permitted_formats: Vec<SignatureFormat>Permitted signature formats.
Trait Implementations§
Source§impl Clone for SignDocSpec
impl Clone for SignDocSpec
Source§fn clone(&self) -> SignDocSpec
fn clone(&self) -> SignDocSpec
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 SignDocSpec
impl Debug for SignDocSpec
Source§impl Default for SignDocSpec
impl Default for SignDocSpec
Source§fn default() -> SignDocSpec
fn default() -> SignDocSpec
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignDocSpec
impl<'de> Deserialize<'de> for SignDocSpec
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 SignDocSpec
impl RefUnwindSafe for SignDocSpec
impl Send for SignDocSpec
impl Sync for SignDocSpec
impl Unpin for SignDocSpec
impl UnsafeUnpin for SignDocSpec
impl UnwindSafe for SignDocSpec
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