Struct cassandra_cpp::KeyspaceMeta [−][src]
pub struct KeyspaceMeta(_);
Expand description
A snapshot of the schema’s metadata.
Implementations
impl KeyspaceMeta
[src]
impl KeyspaceMeta
[src]pub fn aggregrates_iter(&self) -> AggregateIteratorⓘNotable traits for AggregateIterator
impl Iterator for AggregateIterator type Item = AggregateMeta;
[src]
pub fn aggregrates_iter(&self) -> AggregateIteratorⓘNotable traits for AggregateIterator
impl Iterator for AggregateIterator type Item = AggregateMeta;
[src]Iterator over the aggregates in this keyspace
pub fn fields_iter(&self) -> FieldIteratorⓘNotable traits for FieldIterator
impl Iterator for FieldIterator type Item = Field;
[src]
pub fn fields_iter(&self) -> FieldIteratorⓘNotable traits for FieldIterator
impl Iterator for FieldIterator type Item = Field;
[src]Iterator over the field in this keyspace
pub fn table_by_name(&self, name: &str) -> Option<TableMeta>
[src]
pub fn table_by_name(&self, name: &str) -> Option<TableMeta>
[src]Gets the table metadata for the provided table name.
pub fn user_type_by_name(&self, name: &str) -> Option<ConstDataType>
[src]
pub fn user_type_by_name(&self, name: &str) -> Option<ConstDataType>
[src]Gets the data type for the provided type name.
pub fn get_function_by_name(
&self,
name: &str,
arguments: Vec<&str>
) -> Option<FunctionMeta>
[src]
pub fn get_function_by_name(
&self,
name: &str,
arguments: Vec<&str>
) -> Option<FunctionMeta>
[src]Gets the function metadata for the provided function name.
pub fn aggregate_by_name(
&self,
name: &str,
arguments: Vec<&str>
) -> Option<AggregateMeta>
[src]
pub fn aggregate_by_name(
&self,
name: &str,
arguments: Vec<&str>
) -> Option<AggregateMeta>
[src]Gets the aggregate metadata for the provided aggregate name.
pub fn table_iter(&mut self) -> TableIteratorⓘNotable traits for TableIterator
impl Iterator for TableIterator type Item = TableMeta;
[src]
pub fn table_iter(&mut self) -> TableIteratorⓘNotable traits for TableIterator
impl Iterator for TableIterator type Item = TableMeta;
[src]Iterator over the tables in this keyspaces
pub fn function_iter(&mut self) -> FunctionIteratorⓘNotable traits for FunctionIterator
impl Iterator for FunctionIterator type Item = FunctionMeta;
[src]
pub fn function_iter(&mut self) -> FunctionIteratorⓘNotable traits for FunctionIterator
impl Iterator for FunctionIterator type Item = FunctionMeta;
[src]Iterator over the functions in this keyspaces
pub fn user_type_iter(&mut self) -> UserTypeIteratorⓘNotable traits for UserTypeIterator
impl Iterator for UserTypeIterator type Item = (String, Value);
[src]
pub fn user_type_iter(&mut self) -> UserTypeIteratorⓘNotable traits for UserTypeIterator
impl Iterator for UserTypeIterator type Item = (String, Value);
[src]Iterator over the UDTs in this keyspaces
pub fn field_by_name(&self, name: &str) -> Option<MetadataFieldValue>
[src]
pub fn field_by_name(&self, name: &str) -> Option<MetadataFieldValue>
[src]Gets a metadata field for the provided name. Metadata fields allow direct access to the column data found in the underlying “keyspaces” metadata table.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for KeyspaceMeta
impl !Send for KeyspaceMeta
impl !Sync for KeyspaceMeta
impl Unpin for KeyspaceMeta
impl UnwindSafe for KeyspaceMeta
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> SendSyncUnwindSafe for T where
T: Send + Sync + UnwindSafe + ?Sized,
[src]
T: Send + Sync + UnwindSafe + ?Sized,