pub struct GenericParam<'db>(/* private fields */);Implementations§
Source§impl<'db> GenericParam<'db>
impl<'db> GenericParam<'db>
pub fn number(&self) -> Result<u16, DecodeError>
pub fn flags(&self) -> Result<GenericParamAttributes, DecodeError>
pub fn owner(&self) -> Result<Option<TypeOrMethodDef<'db>>, DecodeError>
pub fn name(&self) -> Result<&'db str, DecodeError>
Trait Implementations§
Source§impl<'db> Clone for GenericParam<'db>
impl<'db> Clone for GenericParam<'db>
Source§fn clone(&self) -> GenericParam<'db>
fn clone(&self) -> GenericParam<'db>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'db> TableAccess<'db, GenericParam<'db>> for Database<'db>
impl<'db> TableAccess<'db, GenericParam<'db>> for Database<'db>
Source§impl<'db> TableRow for GenericParam<'db>
impl<'db> TableRow for GenericParam<'db>
type Kind = GenericParam
Auto Trait Implementations§
impl<'db> Freeze for GenericParam<'db>
impl<'db> RefUnwindSafe for GenericParam<'db>
impl<'db> Send for GenericParam<'db>
impl<'db> Sync for GenericParam<'db>
impl<'db> Unpin for GenericParam<'db>
impl<'db> UnwindSafe for GenericParam<'db>
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