pub struct SessionFsSetProviderRequest {
pub capabilities: Option<SessionFsSetProviderCapabilities>,
pub conventions: SessionFsSetProviderConventions,
pub initial_cwd: String,
pub session_state_path: String,
}Expand description
Initial working directory, session-state path layout, and path conventions used to register the calling SDK client as the session filesystem provider.
Fields§
§capabilities: Option<SessionFsSetProviderCapabilities>Optional capabilities declared by the provider
conventions: SessionFsSetProviderConventionsPath conventions used by this filesystem
initial_cwd: StringInitial working directory for sessions
session_state_path: StringPath within each session’s SessionFs where the runtime stores files for that session
Trait Implementations§
Source§impl Clone for SessionFsSetProviderRequest
impl Clone for SessionFsSetProviderRequest
Source§fn clone(&self) -> SessionFsSetProviderRequest
fn clone(&self) -> SessionFsSetProviderRequest
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 SessionFsSetProviderRequest
impl Debug for SessionFsSetProviderRequest
Source§impl Default for SessionFsSetProviderRequest
impl Default for SessionFsSetProviderRequest
Source§fn default() -> SessionFsSetProviderRequest
fn default() -> SessionFsSetProviderRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionFsSetProviderRequest
impl<'de> Deserialize<'de> for SessionFsSetProviderRequest
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
Auto Trait Implementations§
impl Freeze for SessionFsSetProviderRequest
impl RefUnwindSafe for SessionFsSetProviderRequest
impl Send for SessionFsSetProviderRequest
impl Sync for SessionFsSetProviderRequest
impl Unpin for SessionFsSetProviderRequest
impl UnsafeUnpin for SessionFsSetProviderRequest
impl UnwindSafe for SessionFsSetProviderRequest
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