pub struct ListOptions<'a> {
pub tags: &'a [&'a str],
pub explicit_format: Option<&'a str>,
pub search: Option<&'a str>,
pub status: Option<&'a str>,
pub annotations: &'a [&'a str],
pub sort: Option<&'a str>,
pub reverse: bool,
pub deprecated: bool,
}Expand description
Options for the enhanced list command (FE-11 F7).
Fields§
§explicit_format: Option<&'a str>§search: Option<&'a str>§status: Option<&'a str>§annotations: &'a [&'a str]§sort: Option<&'a str>§reverse: bool§deprecated: boolTrait Implementations§
Source§impl<'a> Default for ListOptions<'a>
impl<'a> Default for ListOptions<'a>
Source§fn default() -> ListOptions<'a>
fn default() -> ListOptions<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for ListOptions<'a>
impl<'a> RefUnwindSafe for ListOptions<'a>
impl<'a> Send for ListOptions<'a>
impl<'a> Sync for ListOptions<'a>
impl<'a> Unpin for ListOptions<'a>
impl<'a> UnsafeUnpin for ListOptions<'a>
impl<'a> UnwindSafe for ListOptions<'a>
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