pub struct FileSystemProxy { /* private fields */ }
Trait Implementations
sourceimpl IClientObject for FileSystemProxy
impl IClientObject for FileSystemProxy
fn new(session: Session) -> Self
fn get_session(&mut self) -> &mut Session
fn get_info(&mut self) -> ObjectInfo
fn set_info(&mut self, info: ObjectInfo)
fn convert_to_domain(&mut self) -> Result<()>
fn query_own_pointer_buffer_size(&mut self) -> Result<u16>
fn close_session(&mut self)
fn is_valid(&mut self) -> bool
fn is_domain(&mut self) -> bool
sourceimpl IFileSystemProxy for FileSystemProxy
impl IFileSystemProxy for FileSystemProxy
fn set_current_process(&mut self, process_id: ProcessId) -> Result<()>
fn open_sd_card_filesystem(&mut self) -> Result<Shared<dyn IFileSystem>>
fn output_access_log_to_sd_card(
&mut self,
access_log: InMapAliasBuffer<u8>
) -> Result<()>
fn sf_server_impl_set_current_process(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()>
fn sf_server_impl_open_sd_card_filesystem(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()>
fn sf_server_impl_output_access_log_to_sd_card(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()>
fn get_sf_command_metadata_table(&self) -> CommandMetadataTable
sourceimpl IObject for FileSystemProxy
impl IObject for FileSystemProxy
fn get_command_metadata_table(&self) -> CommandMetadataTable
fn call_self_server_command(
&mut self,
command_fn: CommandFn,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()>
sourceimpl IService for FileSystemProxy
impl IService for FileSystemProxy
fn get_name() -> ServiceName
fn as_domain() -> bool
fn post_initialize(&mut self) -> Result<()>
Auto Trait Implementations
impl RefUnwindSafe for FileSystemProxy
impl Send for FileSystemProxy
impl Sync for FileSystemProxy
impl Unpin for FileSystemProxy
impl UnwindSafe for FileSystemProxy
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more