pub struct CreateHeaderRequest {
pub section_break_location: Option<Location>,
pub type_: Option<String>,
}
Expand description
Creates a Header. The new header is applied to the SectionStyle at the location of the SectionBreak if specified, otherwise it is applied to the DocumentStyle. If a header of the specified type already exists, a 400 bad request error is returned.
This type is not used in any activity, and only used as part of another schema.
Fields§
§section_break_location: Option<Location>
The location of the SectionBreak which begins the section this header should belong to. If `section_break_location’ is unset or if it refers to the first section break in the document body, the header applies to the DocumentStyle
type_: Option<String>
The type of header to create.
Trait Implementations§
Source§impl Clone for CreateHeaderRequest
impl Clone for CreateHeaderRequest
Source§fn clone(&self) -> CreateHeaderRequest
fn clone(&self) -> CreateHeaderRequest
Returns a copy 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 CreateHeaderRequest
impl Debug for CreateHeaderRequest
Source§impl Default for CreateHeaderRequest
impl Default for CreateHeaderRequest
Source§fn default() -> CreateHeaderRequest
fn default() -> CreateHeaderRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateHeaderRequest
impl<'de> Deserialize<'de> for CreateHeaderRequest
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 CreateHeaderRequest
impl Serialize for CreateHeaderRequest
impl Part for CreateHeaderRequest
Auto Trait Implementations§
impl Freeze for CreateHeaderRequest
impl RefUnwindSafe for CreateHeaderRequest
impl Send for CreateHeaderRequest
impl Sync for CreateHeaderRequest
impl Unpin for CreateHeaderRequest
impl UnwindSafe for CreateHeaderRequest
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
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>
Converts
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>
Converts
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