pub struct PlaylistsRemoveArgs {
pub playlist: String,
pub items: Vec<String>,
pub dry_run: bool,
pub json: bool,
}Fields§
§playlist: String§items: Vec<String>One or more playlist-item IDs or video IDs. When a video ID is supplied, zad lists the playlist to find the matching item; if the same video appears multiple times, every match is removed.
dry_run: bool§json: boolTrait Implementations§
Source§impl Args for PlaylistsRemoveArgs
impl Args for PlaylistsRemoveArgs
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 PlaylistsRemoveArgs
impl Debug for PlaylistsRemoveArgs
Source§impl FromArgMatches for PlaylistsRemoveArgs
impl FromArgMatches for PlaylistsRemoveArgs
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 PlaylistsRemoveArgs
impl RefUnwindSafe for PlaylistsRemoveArgs
impl Send for PlaylistsRemoveArgs
impl Sync for PlaylistsRemoveArgs
impl Unpin for PlaylistsRemoveArgs
impl UnsafeUnpin for PlaylistsRemoveArgs
impl UnwindSafe for PlaylistsRemoveArgs
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