pub enum GollumEventPagesItemAction {
Created,
Edited,
}
Expand description
The action that was performed on the page. Can be created
or edited
.
JSON schema
{
"description": "The action that was performed on the page. Can be `created` or `edited`.",
"type": "string",
"enum": [
"created",
"edited"
]
}
Variants§
Trait Implementations§
Source§impl Clone for GollumEventPagesItemAction
impl Clone for GollumEventPagesItemAction
Source§fn clone(&self) -> GollumEventPagesItemAction
fn clone(&self) -> GollumEventPagesItemAction
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 GollumEventPagesItemAction
impl Debug for GollumEventPagesItemAction
Source§impl<'de> Deserialize<'de> for GollumEventPagesItemAction
impl<'de> Deserialize<'de> for GollumEventPagesItemAction
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 From<&GollumEventPagesItemAction> for GollumEventPagesItemAction
impl From<&GollumEventPagesItemAction> for GollumEventPagesItemAction
Source§fn from(value: &GollumEventPagesItemAction) -> Self
fn from(value: &GollumEventPagesItemAction) -> Self
Converts to this type from the input type.
Source§impl FromStr for GollumEventPagesItemAction
impl FromStr for GollumEventPagesItemAction
Source§impl Hash for GollumEventPagesItemAction
impl Hash for GollumEventPagesItemAction
Source§impl Ord for GollumEventPagesItemAction
impl Ord for GollumEventPagesItemAction
Source§fn cmp(&self, other: &GollumEventPagesItemAction) -> Ordering
fn cmp(&self, other: &GollumEventPagesItemAction) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for GollumEventPagesItemAction
impl PartialOrd for GollumEventPagesItemAction
Source§impl TryFrom<&String> for GollumEventPagesItemAction
impl TryFrom<&String> for GollumEventPagesItemAction
Source§impl TryFrom<&str> for GollumEventPagesItemAction
impl TryFrom<&str> for GollumEventPagesItemAction
Source§impl TryFrom<String> for GollumEventPagesItemAction
impl TryFrom<String> for GollumEventPagesItemAction
impl Copy for GollumEventPagesItemAction
impl Eq for GollumEventPagesItemAction
impl StructuralPartialEq for GollumEventPagesItemAction
Auto Trait Implementations§
impl Freeze for GollumEventPagesItemAction
impl RefUnwindSafe for GollumEventPagesItemAction
impl Send for GollumEventPagesItemAction
impl Sync for GollumEventPagesItemAction
impl Unpin for GollumEventPagesItemAction
impl UnwindSafe for GollumEventPagesItemAction
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