#[non_exhaustive]pub struct MakeDirectoryRequest {
pub workspace: String,
pub path: String,
/* private fields */
}Expand description
MakeDirectory request message.
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.workspace: StringRequired. The workspace’s name.
path: StringRequired. The directory’s full path including directory name, relative to the workspace root.
Implementations§
Trait Implementations§
Source§impl Clone for MakeDirectoryRequest
impl Clone for MakeDirectoryRequest
Source§fn clone(&self) -> MakeDirectoryRequest
fn clone(&self) -> MakeDirectoryRequest
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 MakeDirectoryRequest
impl Debug for MakeDirectoryRequest
Source§impl Default for MakeDirectoryRequest
impl Default for MakeDirectoryRequest
Source§fn default() -> MakeDirectoryRequest
fn default() -> MakeDirectoryRequest
Returns the “default value” for a type. Read more
Source§impl Message for MakeDirectoryRequest
impl Message for MakeDirectoryRequest
Source§impl PartialEq for MakeDirectoryRequest
impl PartialEq for MakeDirectoryRequest
impl StructuralPartialEq for MakeDirectoryRequest
Auto Trait Implementations§
impl Freeze for MakeDirectoryRequest
impl RefUnwindSafe for MakeDirectoryRequest
impl Send for MakeDirectoryRequest
impl Sync for MakeDirectoryRequest
impl Unpin for MakeDirectoryRequest
impl UnwindSafe for MakeDirectoryRequest
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