pub struct DocumentInput {
pub id: String,
pub name: String,
pub description: Option<String>,
pub kind: String,
}Expand description
An external document reference for StepBuilder::document.
Fields§
§id: String§name: String§description: Option<String>§kind: StringDOCUMENT_TYPE.product_data_type, e.g. "drawing".
Trait Implementations§
Source§impl Clone for DocumentInput
impl Clone for DocumentInput
Source§fn clone(&self) -> DocumentInput
fn clone(&self) -> DocumentInput
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 moreAuto Trait Implementations§
impl Freeze for DocumentInput
impl RefUnwindSafe for DocumentInput
impl Send for DocumentInput
impl Sync for DocumentInput
impl Unpin for DocumentInput
impl UnsafeUnpin for DocumentInput
impl UnwindSafe for DocumentInput
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