pub struct Additional {
pub display_name: Option<String>,
pub document_type: Option<String>,
pub example_format: Option<String>,
pub format: Option<String>,
pub sides: Option<Vec<String>>,
}
Expand description
Additional information required by the document type.
Fields§
§display_name: Option<String>
Additional display name.\n
document_type: Option<String>
Additional document type.\n
example_format: Option<String>
Additional example format.\n
format: Option<String>
Additional document format.\n
sides: Option<Vec<String>>
Additional document sides.\n
Trait Implementations§
Source§impl Clone for Additional
impl Clone for Additional
Source§fn clone(&self) -> Additional
fn clone(&self) -> Additional
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 Additional
impl Debug for Additional
Source§impl<'de> Deserialize<'de> for Additional
impl<'de> Deserialize<'de> for Additional
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 Additional
impl RefUnwindSafe for Additional
impl Send for Additional
impl Sync for Additional
impl Unpin for Additional
impl UnwindSafe for Additional
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