pub struct Arg<ID> {
pub id: Valued<ID>,
pub max_values: usize,
pub possible_values: &'static [(&'static str, &'static str)],
}Fields§
§id: Valued<ID>§max_values: usize§possible_values: &'static [(&'static str, &'static str)]Auto Trait Implementations§
impl<ID> Freeze for Arg<ID>where
ID: Freeze,
impl<ID> RefUnwindSafe for Arg<ID>where
ID: RefUnwindSafe,
impl<ID> Send for Arg<ID>where
ID: Send,
impl<ID> Sync for Arg<ID>where
ID: Sync,
impl<ID> Unpin for Arg<ID>where
ID: Unpin,
impl<ID> UnsafeUnpin for Arg<ID>where
ID: UnsafeUnpin,
impl<ID> UnwindSafe for Arg<ID>where
ID: UnwindSafe,
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