pub struct InsertPageBreakRequest {
pub end_of_segment_location: Option<EndOfSegmentLocation>,
pub location: Option<Location>,
}
Expand description
Inserts a page break followed by a newline at the specified location.
This type is not used in any activity, and only used as part of another schema.
Fields§
§end_of_segment_location: Option<EndOfSegmentLocation>
Inserts the page break at the end of the document body. Page breaks cannot be inserted inside a footnote, header or footer. Since page breaks can only be inserted inside the body, the segment ID field must be empty.
location: Option<Location>
Inserts the page break at a specific index in the document. The page break 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 the table and its preceding paragraph). Page breaks cannot be inserted inside a table, equation, footnote, header or footer. Since page breaks can only be inserted inside the body, the segment ID field must be empty.
Trait Implementations§
Source§impl Clone for InsertPageBreakRequest
impl Clone for InsertPageBreakRequest
Source§fn clone(&self) -> InsertPageBreakRequest
fn clone(&self) -> InsertPageBreakRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for InsertPageBreakRequest
impl Debug for InsertPageBreakRequest
Source§impl Default for InsertPageBreakRequest
impl Default for InsertPageBreakRequest
Source§fn default() -> InsertPageBreakRequest
fn default() -> InsertPageBreakRequest
Source§impl<'de> Deserialize<'de> for InsertPageBreakRequest
impl<'de> Deserialize<'de> for InsertPageBreakRequest
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>,
Source§impl Serialize for InsertPageBreakRequest
impl Serialize for InsertPageBreakRequest
impl Part for InsertPageBreakRequest
Auto Trait Implementations§
impl Freeze for InsertPageBreakRequest
impl RefUnwindSafe for InsertPageBreakRequest
impl Send for InsertPageBreakRequest
impl Sync for InsertPageBreakRequest
impl Unpin for InsertPageBreakRequest
impl UnwindSafe for InsertPageBreakRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more