Struct cassandra_cpp::ColumnMeta
source · [−]pub struct ColumnMeta(_);
Expand description
Column metadata
Implementations
sourceimpl ColumnMeta
impl ColumnMeta
sourcepub fn field_iter(&mut self) -> FieldIteratorⓘNotable traits for FieldIteratorimpl Iterator for FieldIterator type Item = Field;
pub fn field_iter(&mut self) -> FieldIteratorⓘNotable traits for FieldIteratorimpl Iterator for FieldIterator type Item = Field;
returns an iterator over the fields of this column
sourcepub fn get_type(&self) -> _CassColumnType
pub fn get_type(&self) -> _CassColumnType
Gets the type of the column.
sourcepub fn field_by_name(&self, name: &str) -> Option<Value>
pub fn field_by_name(&self, name: &str) -> Option<Value>
Gets a metadata field for the provided name. Metadata fields allow direct access to the column data found in the underlying “columns” metadata table.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ColumnMeta
impl !Send for ColumnMeta
impl !Sync for ColumnMeta
impl Unpin for ColumnMeta
impl UnwindSafe for ColumnMeta
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more