pub enum MovePosition {
Append,
Before,
After,
}Expand description
Position for ConfluenceApi::move_page. Same-space only —
cross-space moves are not supported by the v2 API.
Variants§
Append
Place the page as the last child of the target (target becomes the new parent).
Before
Place the page as a sibling immediately before the target.
After
Place the page as a sibling immediately after the target.
Implementations§
Trait Implementations§
Source§impl Clone for MovePosition
impl Clone for MovePosition
Source§fn clone(&self) -> MovePosition
fn clone(&self) -> MovePosition
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 moreimpl Copy for MovePosition
Source§impl Debug for MovePosition
impl Debug for MovePosition
impl Eq for MovePosition
Source§impl PartialEq for MovePosition
impl PartialEq for MovePosition
Source§fn eq(&self, other: &MovePosition) -> bool
fn eq(&self, other: &MovePosition) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MovePosition
Auto Trait Implementations§
impl Freeze for MovePosition
impl RefUnwindSafe for MovePosition
impl Send for MovePosition
impl Sync for MovePosition
impl Unpin for MovePosition
impl UnsafeUnpin for MovePosition
impl UnwindSafe for MovePosition
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.