pub struct List { /* private fields */ }Implementations§
Trait Implementations§
Source§impl AsRust for List
impl AsRust for List
fn as_rust<R>(&self) -> CDRSResult<Option<R>>where
Self: AsRustType<R>,
fn as_r_rust<T>(&self) -> CDRSResult<T>where
Self: AsRustType<T>,
Source§impl FromCDRS for List
impl FromCDRS for List
fn from_cdrs<T>(cdrs_type: T) -> CDRSResult<Option<Self>>
fn from_cdrs_r<T>(cdrs_type: T) -> CDRSResult<Self>
Source§impl FromCDRSByName for List
impl FromCDRSByName for List
fn from_cdrs_by_name<T>(cdrs_type: &T, name: &str) -> CDRSResult<Option<Self>>
fn from_cdrs_r<T>(cdrs_type: &T, name: &str) -> CDRSResult<Self>
Source§impl IntoRustByIndex<List> for Row
impl IntoRustByIndex<List> for Row
fn get_by_index(&self, index: usize) -> Result<Option<List>>
fn get_r_by_index(&self, index: usize) -> CDRSResult<R>
Source§impl IntoRustByIndex<List> for Tuple
impl IntoRustByIndex<List> for Tuple
fn get_by_index(&self, index: usize) -> Result<Option<List>>
fn get_r_by_index(&self, index: usize) -> CDRSResult<R>
Source§impl IntoRustByName<List> for Row
impl IntoRustByName<List> for Row
fn get_by_name(&self, name: &str) -> Result<Option<List>>
fn get_r_by_name(&self, name: &str) -> CDRSResult<R>
Source§impl IntoRustByName<List> for UDT
impl IntoRustByName<List> for UDT
fn get_by_name(&self, name: &str) -> Result<Option<List>>
fn get_r_by_name(&self, name: &str) -> CDRSResult<R>
Auto Trait Implementations§
impl Freeze for List
impl RefUnwindSafe for List
impl Send for List
impl Sync for List
impl Unpin for List
impl UnsafeUnpin for List
impl UnwindSafe for List
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