pub struct DeleteSubject {
pub schema_registry: SchemaRegistrySettings,
pub subject: SubjectName,
pub version: Option<SchemaVersion>,
pub permanent: bool,
}Expand description
Delete subject
Fields§
§schema_registry: SchemaRegistrySettingsThe schema registry
subject: SubjectNameThe subject name
version: Option<SchemaVersion>The schema version
permanent: boolDelete permanent
Trait Implementations§
Source§impl Args for DeleteSubject
impl Args for DeleteSubject
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 DeleteSubject
impl Clone for DeleteSubject
Source§fn clone(&self) -> DeleteSubject
fn clone(&self) -> DeleteSubject
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 DeleteSubject
impl Debug for DeleteSubject
Source§impl FromArgMatches for DeleteSubject
impl FromArgMatches for DeleteSubject
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 PartialEq for DeleteSubject
impl PartialEq for DeleteSubject
impl StructuralPartialEq for DeleteSubject
Auto Trait Implementations§
impl Freeze for DeleteSubject
impl RefUnwindSafe for DeleteSubject
impl Send for DeleteSubject
impl Sync for DeleteSubject
impl Unpin for DeleteSubject
impl UnwindSafe for DeleteSubject
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