pub struct UpdateStoragePath {
pub name: Option<String>,
pub path: Option<String>,
pub match_pattern: Option<Option<String>>,
pub matching_algorithm: Option<MatchAlgorithm>,
pub is_insensitive: Option<bool>,
pub owner: Option<Option<UserId>>,
}Fields§
§name: Option<String>Name of the storage path.
path: Option<String>§match_pattern: Option<Option<String>>Matching pattern for the storage path.
matching_algorithm: Option<MatchAlgorithm>Matching algorithm for the storage path.
is_insensitive: Option<bool>Whether the storage path matching is case-insensitive.
owner: Option<Option<UserId>>The user who owns this storage path, if any.
Trait Implementations§
Source§impl Clone for UpdateStoragePath
impl Clone for UpdateStoragePath
Source§fn clone(&self) -> UpdateStoragePath
fn clone(&self) -> UpdateStoragePath
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 Debug for UpdateStoragePath
impl Debug for UpdateStoragePath
Source§impl Default for UpdateStoragePath
impl Default for UpdateStoragePath
Source§fn default() -> UpdateStoragePath
fn default() -> UpdateStoragePath
Returns the “default value” for a type. Read more
Source§impl Serialize for UpdateStoragePath
impl Serialize for UpdateStoragePath
Source§impl UpdateDto for UpdateStoragePath
impl UpdateDto for UpdateStoragePath
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.
Auto Trait Implementations§
impl Freeze for UpdateStoragePath
impl RefUnwindSafe for UpdateStoragePath
impl Send for UpdateStoragePath
impl Sync for UpdateStoragePath
impl Unpin for UpdateStoragePath
impl UnsafeUnpin for UpdateStoragePath
impl UnwindSafe for UpdateStoragePath
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