pub struct CreateStoragePath {
pub name: String,
pub path: String,
pub match_pattern: Option<String>,
pub matching_algorithm: MatchAlgorithm,
pub is_insensitive: bool,
pub owner: Option<UserId>,
}Fields§
§name: StringName of the storage path.
path: String§match_pattern: Option<String>Matching pattern for the storage path.
matching_algorithm: MatchAlgorithmMatching algorithm for the storage path.
is_insensitive: boolWhether the storage path matching is case-insensitive.
owner: Option<UserId>The user who owns this storage path, if any.
Trait Implementations§
Source§impl Clone for CreateStoragePath
impl Clone for CreateStoragePath
Source§fn clone(&self) -> CreateStoragePath
fn clone(&self) -> CreateStoragePath
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl CreateDto for CreateStoragePath
impl CreateDto for CreateStoragePath
Source§type Id = StoragePathId
type Id = StoragePathId
The ID type for this item.
Source§type BaseType = StoragePath
type BaseType = StoragePath
The base type for the DTO.
Source§impl Debug for CreateStoragePath
impl Debug for CreateStoragePath
Source§impl Default for CreateStoragePath
impl Default for CreateStoragePath
Source§fn default() -> CreateStoragePath
fn default() -> CreateStoragePath
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CreateStoragePath
impl RefUnwindSafe for CreateStoragePath
impl Send for CreateStoragePath
impl Sync for CreateStoragePath
impl Unpin for CreateStoragePath
impl UnsafeUnpin for CreateStoragePath
impl UnwindSafe for CreateStoragePath
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