pub struct GithubWorkflows { /* private fields */ }Implementations§
Source§impl GithubWorkflows
Auto-generated by derive_getters::Getters.
impl GithubWorkflows
Auto-generated by derive_getters::Getters.
Sourcepub fn destination(&self) -> &PathBuf
pub fn destination(&self) -> &PathBuf
The working directory to use for installation.
Sourcepub fn workflows_list(&self) -> &Option<Vec<Workflow>>
pub fn workflows_list(&self) -> &Option<Vec<Workflow>>
Use the release workflow in this project.
Trait Implementations§
Source§impl Args for GithubWorkflows
impl Args for GithubWorkflows
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl Clone for GithubWorkflows
impl Clone for GithubWorkflows
Source§fn clone(&self) -> GithubWorkflows
fn clone(&self) -> GithubWorkflows
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 CommandFactory for GithubWorkflows
impl CommandFactory for GithubWorkflows
Source§impl Debug for GithubWorkflows
impl Debug for GithubWorkflows
Source§impl Default for GithubWorkflows
impl Default for GithubWorkflows
Source§fn default() -> GithubWorkflows
fn default() -> GithubWorkflows
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GithubWorkflows
impl<'de> Deserialize<'de> for GithubWorkflows
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 FromArgMatches for GithubWorkflows
impl FromArgMatches for GithubWorkflows
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§impl Parser for GithubWorkflows
impl Parser for GithubWorkflows
Source§fn parse_from<I, T>(itr: I) -> Self
fn parse_from<I, T>(itr: I) -> Self
Parse from iterator, exit on error.
Source§fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
Parse from iterator, return Err on error.
Source§fn update_from<I, T>(&mut self, itr: I)
fn update_from<I, T>(&mut self, itr: I)
Source§impl PartialEq for GithubWorkflows
impl PartialEq for GithubWorkflows
Source§fn eq(&self, other: &GithubWorkflows) -> bool
fn eq(&self, other: &GithubWorkflows) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GithubWorkflows
impl Serialize for GithubWorkflows
impl StructuralPartialEq for GithubWorkflows
Source§impl ToolTrait for GithubWorkflows
impl ToolTrait for GithubWorkflows
Auto Trait Implementations§
impl Freeze for GithubWorkflows
impl RefUnwindSafe for GithubWorkflows
impl Send for GithubWorkflows
impl Sync for GithubWorkflows
impl Unpin for GithubWorkflows
impl UnsafeUnpin for GithubWorkflows
impl UnwindSafe for GithubWorkflows
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