pub struct ApiId {
pub id: u64,
pub name: &'static str,
}
Expand description
API identifier containing unique id and name
Fields§
§id: u64
Globally unique 64-bit identifier value for an API
name: &'static str
Full name of the API, in kebab-case
Trait Implementations§
impl Copy for ApiId
impl Eq for ApiId
impl StructuralPartialEq for ApiId
Auto Trait Implementations§
impl Freeze for ApiId
impl RefUnwindSafe for ApiId
impl Send for ApiId
impl Sync for ApiId
impl Unpin for ApiId
impl UnwindSafe for ApiId
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