pub struct EventsUpdateArgs {Show 16 fields
pub id: String,
pub calendar: Option<String>,
pub summary: Option<String>,
pub description: Option<String>,
pub location: Option<String>,
pub start: Option<String>,
pub end: Option<String>,
pub tz: Option<String>,
pub add_attendees: Vec<String>,
pub remove_attendees: Vec<String>,
pub add_reminder_minutes: Vec<u32>,
pub visibility: Option<String>,
pub send_updates: Option<String>,
pub from_json: Option<String>,
pub dry_run: bool,
pub json: bool,
}Fields§
§id: String§calendar: Option<String>§summary: Option<String>§description: Option<String>§location: Option<String>§start: Option<String>§end: Option<String>§tz: Option<String>§add_attendees: Vec<String>§remove_attendees: Vec<String>§add_reminder_minutes: Vec<u32>§visibility: Option<String>§send_updates: Option<String>§from_json: Option<String>§dry_run: bool§json: boolTrait Implementations§
Source§impl Args for EventsUpdateArgs
impl Args for EventsUpdateArgs
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 Debug for EventsUpdateArgs
impl Debug for EventsUpdateArgs
Source§impl FromArgMatches for EventsUpdateArgs
impl FromArgMatches for EventsUpdateArgs
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.Auto Trait Implementations§
impl Freeze for EventsUpdateArgs
impl RefUnwindSafe for EventsUpdateArgs
impl Send for EventsUpdateArgs
impl Sync for EventsUpdateArgs
impl Unpin for EventsUpdateArgs
impl UnsafeUnpin for EventsUpdateArgs
impl UnwindSafe for EventsUpdateArgs
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