pub struct InsertDateRequest {
pub date_element_properties: Option<DateElementProperties>,
pub end_of_segment_location: Option<EndOfSegmentLocation>,
pub location: Option<Location>,
}Expand description
Inserts a date at the specified location.
This type is not used in any activity, and only used as part of another schema.
Fields§
§date_element_properties: Option<DateElementProperties>The properties of the date to insert.
end_of_segment_location: Option<EndOfSegmentLocation>Inserts the date at the end of the given header, footer or document body.
location: Option<Location>Inserts the date at a specific index in the document. The date must be inserted inside the bounds of an existing Paragraph. For instance, it cannot be inserted at a table’s start index (i.e. between an existing table and its preceding paragraph).
Trait Implementations§
Source§impl Clone for InsertDateRequest
impl Clone for InsertDateRequest
Source§fn clone(&self) -> InsertDateRequest
fn clone(&self) -> InsertDateRequest
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 InsertDateRequest
impl Debug for InsertDateRequest
Source§impl Default for InsertDateRequest
impl Default for InsertDateRequest
Source§fn default() -> InsertDateRequest
fn default() -> InsertDateRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InsertDateRequest
impl<'de> Deserialize<'de> for InsertDateRequest
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 Serialize for InsertDateRequest
impl Serialize for InsertDateRequest
impl Part for InsertDateRequest
Auto Trait Implementations§
impl Freeze for InsertDateRequest
impl RefUnwindSafe for InsertDateRequest
impl Send for InsertDateRequest
impl Sync for InsertDateRequest
impl Unpin for InsertDateRequest
impl UnwindSafe for InsertDateRequest
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