pub enum PostCreateAction {
EnsureGithubRepository {
repo: GithubRepo,
},
}Expand description
A side effect the caller should perform after writing the generated files.
Variants§
EnsureGithubRepository
Ensure the GitHub repository exists (e.g. gh repo view / gh repo create).
Fields
§
repo: GithubRepoThe repository to ensure.
Trait Implementations§
Source§impl Clone for PostCreateAction
impl Clone for PostCreateAction
Source§fn clone(&self) -> PostCreateAction
fn clone(&self) -> PostCreateAction
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 moreSource§impl Debug for PostCreateAction
impl Debug for PostCreateAction
impl Eq for PostCreateAction
Source§impl PartialEq for PostCreateAction
impl PartialEq for PostCreateAction
Source§fn eq(&self, other: &PostCreateAction) -> bool
fn eq(&self, other: &PostCreateAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PostCreateAction
Auto Trait Implementations§
impl Freeze for PostCreateAction
impl RefUnwindSafe for PostCreateAction
impl Send for PostCreateAction
impl Sync for PostCreateAction
impl Unpin for PostCreateAction
impl UnsafeUnpin for PostCreateAction
impl UnwindSafe for PostCreateAction
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