#[non_exhaustive]pub struct SelectedObjects {
pub database: String,
/* private fields */
}Expand description
A list of objects that the user selects for replication from an external source instance.
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.database: StringRequired. The name of the database to migrate.
Implementations§
Trait Implementations§
Source§impl Clone for SelectedObjects
impl Clone for SelectedObjects
Source§fn clone(&self) -> SelectedObjects
fn clone(&self) -> SelectedObjects
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 SelectedObjects
impl Debug for SelectedObjects
Source§impl Default for SelectedObjects
impl Default for SelectedObjects
Source§fn default() -> SelectedObjects
fn default() -> SelectedObjects
Returns the “default value” for a type. Read more
Source§impl Message for SelectedObjects
impl Message for SelectedObjects
Source§impl PartialEq for SelectedObjects
impl PartialEq for SelectedObjects
impl StructuralPartialEq for SelectedObjects
Auto Trait Implementations§
impl Freeze for SelectedObjects
impl RefUnwindSafe for SelectedObjects
impl Send for SelectedObjects
impl Sync for SelectedObjects
impl Unpin for SelectedObjects
impl UnwindSafe for SelectedObjects
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