Struct mentat_db::AttributeBuilder
[−]
[src]
pub struct AttributeBuilder { pub value_type: Option<ValueType>, pub multival: Option<bool>, pub unique: Option<Option<Unique>>, pub index: Option<bool>, pub fulltext: Option<bool>, pub component: Option<bool>, pub no_history: Option<bool>, // some fields omitted }
Fields
value_type: Option<ValueType>
multival: Option<bool>
unique: Option<Option<Unique>>
index: Option<bool>
fulltext: Option<bool>
component: Option<bool>
no_history: Option<bool>
Methods
impl AttributeBuilder
[src]
impl AttributeBuilder
pub fn helpful() -> Self
[src]
pub fn helpful() -> Self
Make a new AttributeBuilder for human consumption: it will help you by flipping relevant flags.
pub fn to_modify_attribute(attribute: &Attribute) -> Self
[src]
pub fn to_modify_attribute(attribute: &Attribute) -> Self
Make a new AttributeBuilder from an existing Attribute. This is important to allow retraction. Only attributes that we allow to change are duplicated here.
ⓘImportant traits for &'a mut Rpub fn value_type<'a>(&'a mut self, value_type: ValueType) -> &'a mut Self
[src]
pub fn value_type<'a>(&'a mut self, value_type: ValueType) -> &'a mut Self
ⓘImportant traits for &'a mut Rpub fn multival<'a>(&'a mut self, multival: bool) -> &'a mut Self
[src]
pub fn multival<'a>(&'a mut self, multival: bool) -> &'a mut Self
ⓘImportant traits for &'a mut Rpub fn non_unique<'a>(&'a mut self) -> &'a mut Self
[src]
pub fn non_unique<'a>(&'a mut self) -> &'a mut Self
ⓘImportant traits for &'a mut Rpub fn unique<'a>(&'a mut self, unique: Unique) -> &'a mut Self
[src]
pub fn unique<'a>(&'a mut self, unique: Unique) -> &'a mut Self
ⓘImportant traits for &'a mut Rpub fn index<'a>(&'a mut self, index: bool) -> &'a mut Self
[src]
pub fn index<'a>(&'a mut self, index: bool) -> &'a mut Self
ⓘImportant traits for &'a mut Rpub fn fulltext<'a>(&'a mut self, fulltext: bool) -> &'a mut Self
[src]
pub fn fulltext<'a>(&'a mut self, fulltext: bool) -> &'a mut Self
ⓘImportant traits for &'a mut Rpub fn component<'a>(&'a mut self, component: bool) -> &'a mut Self
[src]
pub fn component<'a>(&'a mut self, component: bool) -> &'a mut Self
ⓘImportant traits for &'a mut Rpub fn no_history<'a>(&'a mut self, no_history: bool) -> &'a mut Self
[src]
pub fn no_history<'a>(&'a mut self, no_history: bool) -> &'a mut Self
pub fn validate_install_attribute(&self) -> Result<()>
[src]
pub fn validate_install_attribute(&self) -> Result<()>
pub fn validate_alter_attribute(&self) -> Result<()>
[src]
pub fn validate_alter_attribute(&self) -> Result<()>
pub fn build(&self) -> Attribute
[src]
pub fn build(&self) -> Attribute
pub fn mutate(&self, attribute: &mut Attribute) -> Vec<AttributeAlteration>
[src]
pub fn mutate(&self, attribute: &mut Attribute) -> Vec<AttributeAlteration>
Trait Implementations
impl Clone for AttributeBuilder
[src]
impl Clone for AttributeBuilder
fn clone(&self) -> AttributeBuilder
[src]
fn clone(&self) -> AttributeBuilder
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for AttributeBuilder
[src]
impl Debug for AttributeBuilder
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Default for AttributeBuilder
[src]
impl Default for AttributeBuilder
fn default() -> AttributeBuilder
[src]
fn default() -> AttributeBuilder
Returns the "default value" for a type. Read more
impl Eq for AttributeBuilder
[src]
impl Eq for AttributeBuilder
impl Hash for AttributeBuilder
[src]
impl Hash for AttributeBuilder
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Ord for AttributeBuilder
[src]
impl Ord for AttributeBuilder
fn cmp(&self, __arg_0: &AttributeBuilder) -> Ordering
[src]
fn cmp(&self, __arg_0: &AttributeBuilder) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl PartialOrd for AttributeBuilder
[src]
impl PartialOrd for AttributeBuilder
fn partial_cmp(&self, __arg_0: &AttributeBuilder) -> Option<Ordering>
[src]
fn partial_cmp(&self, __arg_0: &AttributeBuilder) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, __arg_0: &AttributeBuilder) -> bool
[src]
fn lt(&self, __arg_0: &AttributeBuilder) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, __arg_0: &AttributeBuilder) -> bool
[src]
fn le(&self, __arg_0: &AttributeBuilder) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, __arg_0: &AttributeBuilder) -> bool
[src]
fn gt(&self, __arg_0: &AttributeBuilder) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, __arg_0: &AttributeBuilder) -> bool
[src]
fn ge(&self, __arg_0: &AttributeBuilder) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl PartialEq for AttributeBuilder
[src]
impl PartialEq for AttributeBuilder
fn eq(&self, __arg_0: &AttributeBuilder) -> bool
[src]
fn eq(&self, __arg_0: &AttributeBuilder) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &AttributeBuilder) -> bool
[src]
fn ne(&self, __arg_0: &AttributeBuilder) -> bool
This method tests for !=
.
Auto Trait Implementations
impl Send for AttributeBuilder
impl Send for AttributeBuilder
impl Sync for AttributeBuilder
impl Sync for AttributeBuilder