pub struct SchemaClearArgs {
pub cmd: Option<String>,
}Expand description
Clear cached schemas. No command name clears all.
Fields§
§cmd: Option<String>Command name to clear (defaults to all).
Trait Implementations§
Source§impl Debug for SchemaClearArgs
impl Debug for SchemaClearArgs
Source§impl FdlArgsTrait for SchemaClearArgs
impl FdlArgsTrait for SchemaClearArgs
Source§fn try_parse_from(args: &[String]) -> Result<Self, String>
fn try_parse_from(args: &[String]) -> Result<Self, String>
Parse from an explicit argv slice. First element is the program
name (ignored), following elements are flags/values/positionals.
Source§fn render_help() -> String
fn render_help() -> String
Render
--help to a string.Auto Trait Implementations§
impl Freeze for SchemaClearArgs
impl RefUnwindSafe for SchemaClearArgs
impl Send for SchemaClearArgs
impl Sync for SchemaClearArgs
impl Unpin for SchemaClearArgs
impl UnsafeUnpin for SchemaClearArgs
impl UnwindSafe for SchemaClearArgs
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