#[non_exhaustive]pub struct DatabaseInstanceEntity {
pub custom_features: Option<Struct>,
/* private fields */
}Expand description
DatabaseInstance acts as a parent entity to other database entities.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.custom_features: Option<Struct>Custom engine specific features.
Implementations§
Source§impl DatabaseInstanceEntity
impl DatabaseInstanceEntity
pub fn new() -> Self
Sourcepub fn set_custom_features<T>(self, v: T) -> Self
pub fn set_custom_features<T>(self, v: T) -> Self
Sets the value of custom_features.
Sourcepub fn set_or_clear_custom_features<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_custom_features<T>(self, v: Option<T>) -> Self
Sets or clears the value of custom_features.
Trait Implementations§
Source§impl Clone for DatabaseInstanceEntity
impl Clone for DatabaseInstanceEntity
Source§fn clone(&self) -> DatabaseInstanceEntity
fn clone(&self) -> DatabaseInstanceEntity
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 Debug for DatabaseInstanceEntity
impl Debug for DatabaseInstanceEntity
Source§impl Default for DatabaseInstanceEntity
impl Default for DatabaseInstanceEntity
Source§fn default() -> DatabaseInstanceEntity
fn default() -> DatabaseInstanceEntity
Returns the “default value” for a type. Read more
Source§impl Message for DatabaseInstanceEntity
impl Message for DatabaseInstanceEntity
Source§impl PartialEq for DatabaseInstanceEntity
impl PartialEq for DatabaseInstanceEntity
impl StructuralPartialEq for DatabaseInstanceEntity
Auto Trait Implementations§
impl Freeze for DatabaseInstanceEntity
impl RefUnwindSafe for DatabaseInstanceEntity
impl Send for DatabaseInstanceEntity
impl Sync for DatabaseInstanceEntity
impl Unpin for DatabaseInstanceEntity
impl UnwindSafe for DatabaseInstanceEntity
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