[−][src]Enum bindgen::callbacks::IntKind
Which integral type are we dealing with?
Variants
A bool
.
A signed char
.
An unsigned char
.
A platform-dependent char
type, with the signedness support.
Fields of Char
is_signed: bool
Whether the char is signed for the target platform.
A short
.
An unsigned short
.
An int
.
An unsigned int
.
A long
.
An unsigned long
.
A long long
.
An unsigned long long
.
A 8-bit signed integer.
A 8-bit unsigned integer.
A 16-bit signed integer.
Either a char16_t
or a wchar_t
.
A 32-bit signed integer.
A 32-bit unsigned integer.
A 64-bit signed integer.
A 64-bit unsigned integer.
An int128_t
A uint128_t
.
A custom integer type, used to allow custom macro types depending on range.
Fields of Custom
Methods
impl IntKind
[src]
pub fn is_signed(&self) -> bool
[src]
Is this integral type signed?
pub fn known_size(&self) -> Option<usize>
[src]
If this type has a known size, return it (in bytes). This is to alleviate libclang sometimes not giving us a layout (like in the case when an enum is defined inside a class with template parameters).
pub fn signedness_matches(&self, val: i64) -> bool
[src]
Whether this type's signedness matches the value.
Trait Implementations
impl Clone for IntKind
[src]
impl Copy for IntKind
[src]
impl Debug for IntKind
[src]
impl Eq for IntKind
[src]
impl Hash for IntKind
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl Ord for IntKind
[src]
fn cmp(&self, other: &IntKind) -> Ordering
[src]
fn max(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
1.21.0[src]
fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<IntKind> for IntKind
[src]
impl PartialOrd<IntKind> for IntKind
[src]
fn partial_cmp(&self, other: &IntKind) -> Option<Ordering>
[src]
fn lt(&self, other: &IntKind) -> bool
[src]
fn le(&self, other: &IntKind) -> bool
[src]
fn gt(&self, other: &IntKind) -> bool
[src]
fn ge(&self, other: &IntKind) -> bool
[src]
impl StructuralEq for IntKind
[src]
impl StructuralPartialEq for IntKind
[src]
Auto Trait Implementations
impl RefUnwindSafe for IntKind
impl Send for IntKind
impl Sync for IntKind
impl Unpin for IntKind
impl UnwindSafe for IntKind
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,