pub struct DatabaseFileInput {
pub id: Option<String>,
pub logical_name: Option<String>,
pub physical_full_name: Option<String>,
pub restore_full_name: Option<String>,
pub file_type: Option<DatabaseFileType>,
}
Expand description
Database file specific information for input
Fields§
§id: Option<String>
Unique identifier for database file
logical_name: Option<String>
Logical name of the file
physical_full_name: Option<String>
Operating-system full path of the file
restore_full_name: Option<String>
Suggested full path of the file for restoring
file_type: Option<DatabaseFileType>
An enumeration of SQL Server database file types
Implementations§
Trait Implementations§
Source§impl Clone for DatabaseFileInput
impl Clone for DatabaseFileInput
Source§fn clone(&self) -> DatabaseFileInput
fn clone(&self) -> DatabaseFileInput
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 DatabaseFileInput
impl Debug for DatabaseFileInput
Source§impl Default for DatabaseFileInput
impl Default for DatabaseFileInput
Source§fn default() -> DatabaseFileInput
fn default() -> DatabaseFileInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatabaseFileInput
impl<'de> Deserialize<'de> for DatabaseFileInput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DatabaseFileInput
impl PartialEq for DatabaseFileInput
Source§impl Serialize for DatabaseFileInput
impl Serialize for DatabaseFileInput
impl StructuralPartialEq for DatabaseFileInput
Auto Trait Implementations§
impl Freeze for DatabaseFileInput
impl RefUnwindSafe for DatabaseFileInput
impl Send for DatabaseFileInput
impl Sync for DatabaseFileInput
impl Unpin for DatabaseFileInput
impl UnwindSafe for DatabaseFileInput
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