pub struct DokumentRepraesentationType {
pub referenz: Option<String>,
pub mime_type: String,
pub inhalt: Option<String>,
pub externer_referenz_typ: Option<String>,
pub externer_referenz_index: Option<String>,
pub inhalt_typ: Option<String>,
pub signaturen: Option<SignaturenType>,
}
Expand description
Dokument-Repräsentation, eine Darstellungsform des Dokumentes. Es muss das Element content oder die Elemente externalReferenceIndex und externalReferenceType oder alle 3 vorhanden sein.
Fields§
§referenz: Option<String>
§mime_type: String
§inhalt: Option<String>
§externer_referenz_typ: Option<String>
§externer_referenz_index: Option<String>
§inhalt_typ: Option<String>
§signaturen: Option<SignaturenType>
Trait Implementations§
source§impl Debug for DokumentRepraesentationType
impl Debug for DokumentRepraesentationType
source§impl<'de> Deserialize<'de> for DokumentRepraesentationType
impl<'de> Deserialize<'de> for DokumentRepraesentationType
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
source§impl Tsify for DokumentRepraesentationType
impl Tsify for DokumentRepraesentationType
type JsType = JsType
const DECL: &'static str = "export interface DokumentRepraesentationType {\n referenz: string | undefined;\n mime_type: string;\n inhalt: string | undefined;\n externer_referenz_typ: string | undefined;\n externer_referenz_index: string | undefined;\n inhalt_typ: string | undefined;\n signaturen: SignaturenType | undefined;\n}"
fn into_js(&self) -> Result<Self::JsType, Error>where
Self: Serialize,
fn from_js<T>(js: T) -> Result<Self, Error>
Auto Trait Implementations§
impl Freeze for DokumentRepraesentationType
impl RefUnwindSafe for DokumentRepraesentationType
impl Send for DokumentRepraesentationType
impl Sync for DokumentRepraesentationType
impl Unpin for DokumentRepraesentationType
impl UnwindSafe for DokumentRepraesentationType
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