pub struct SchemaRefreshArgs {
pub cmd: Option<String>,
}Expand description
Re-probe each entry and rewrite the cache.
Fields§
§cmd: Option<String>Command name to refresh (defaults to all).
Trait Implementations§
Source§impl Debug for SchemaRefreshArgs
impl Debug for SchemaRefreshArgs
Source§impl FdlArgsTrait for SchemaRefreshArgs
impl FdlArgsTrait for SchemaRefreshArgs
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 SchemaRefreshArgs
impl RefUnwindSafe for SchemaRefreshArgs
impl Send for SchemaRefreshArgs
impl Sync for SchemaRefreshArgs
impl Unpin for SchemaRefreshArgs
impl UnsafeUnpin for SchemaRefreshArgs
impl UnwindSafe for SchemaRefreshArgs
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