pub struct CreatePageInput {
pub content_type: String,
pub title: String,
pub space: SpaceKey,
pub body: Body,
pub ancestors: Option<Vec<Ancestor>>,
}Expand description
Create page input.
Fields§
§content_type: String§title: String§space: SpaceKey§body: Body§ancestors: Option<Vec<Ancestor>>Implementations§
Trait Implementations§
Source§impl Clone for CreatePageInput
impl Clone for CreatePageInput
Source§fn clone(&self) -> CreatePageInput
fn clone(&self) -> CreatePageInput
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 CreatePageInput
impl Debug for CreatePageInput
Auto Trait Implementations§
impl Freeze for CreatePageInput
impl RefUnwindSafe for CreatePageInput
impl Send for CreatePageInput
impl Sync for CreatePageInput
impl Unpin for CreatePageInput
impl UnwindSafe for CreatePageInput
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