pub struct ApiModel {Show 13 fields
pub c_prefix: String,
pub enums: Vec<EnumModel>,
pub bitmasks: Vec<BitmaskModel>,
pub structures: Vec<StructureModel>,
pub objects: Vec<ObjectModel>,
pub functions: Vec<FunctionModel>,
pub callbacks: Vec<CallbackModel>,
pub callback_functions: Vec<CallbackFunctionModel>,
pub callback_infos: Vec<CallbackInfoModel>,
pub constants: Vec<ConstantModel>,
pub natives: Vec<NativeModel>,
pub typedefs: Vec<TypedefModel>,
pub function_pointers: Vec<FunctionPointerModel>,
}Fields§
§c_prefix: String§enums: Vec<EnumModel>§bitmasks: Vec<BitmaskModel>§structures: Vec<StructureModel>§objects: Vec<ObjectModel>§functions: Vec<FunctionModel>§callbacks: Vec<CallbackModel>§callback_functions: Vec<CallbackFunctionModel>§callback_infos: Vec<CallbackInfoModel>§constants: Vec<ConstantModel>§natives: Vec<NativeModel>§typedefs: Vec<TypedefModel>§function_pointers: Vec<FunctionPointerModel>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ApiModel
impl RefUnwindSafe for ApiModel
impl Send for ApiModel
impl Sync for ApiModel
impl Unpin for ApiModel
impl UnsafeUnpin for ApiModel
impl UnwindSafe for ApiModel
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more