pub struct DataroomAddDocument {
pub document_id: Option<Option<Value>>,
pub id: Option<String>,
pub order_index: Option<Option<Value>>,
}Fields§
§document_id: Option<Option<Value>>§id: Option<String>ID is the room to add to. It is the path segment: the URL is the addressing authority, and the org it is resolved in comes from the caller’s principal, so an id from another tenant is simply not found.
order_index: Option<Option<Value>>Implementations§
Source§impl DataroomAddDocument
impl DataroomAddDocument
pub fn new() -> DataroomAddDocument
Trait Implementations§
Source§impl Clone for DataroomAddDocument
impl Clone for DataroomAddDocument
Source§fn clone(&self) -> DataroomAddDocument
fn clone(&self) -> DataroomAddDocument
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 DataroomAddDocument
impl Debug for DataroomAddDocument
Source§impl Default for DataroomAddDocument
impl Default for DataroomAddDocument
Source§fn default() -> DataroomAddDocument
fn default() -> DataroomAddDocument
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DataroomAddDocument
impl<'de> Deserialize<'de> for DataroomAddDocument
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 PartialEq for DataroomAddDocument
impl PartialEq for DataroomAddDocument
Source§impl Serialize for DataroomAddDocument
impl Serialize for DataroomAddDocument
impl StructuralPartialEq for DataroomAddDocument
Auto Trait Implementations§
impl Freeze for DataroomAddDocument
impl RefUnwindSafe for DataroomAddDocument
impl Send for DataroomAddDocument
impl Sync for DataroomAddDocument
impl Unpin for DataroomAddDocument
impl UnsafeUnpin for DataroomAddDocument
impl UnwindSafe for DataroomAddDocument
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