pub struct ShellInterface { /* private fields */ }
Trait Implementations
sourceimpl IClientObject for ShellInterface
impl IClientObject for ShellInterface
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 IObject for ShellInterface
impl IObject for ShellInterface
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 ShellInterface
impl IService for ShellInterface
fn get_name() -> ServiceName
fn as_domain() -> bool
fn post_initialize(&mut self) -> Result<()>
sourceimpl IShellInterface for ShellInterface
impl IShellInterface for ShellInterface
fn set_program_argument_deprecated(
&mut self,
program_id: u64,
args_size: u32,
args_buf: InPointerBuffer<u8>
) -> Result<()>
fn set_program_argument(
&mut self,
program_id: u64,
args_buf: InPointerBuffer<u8>
) -> Result<()>
fn flush_arguments(&mut self) -> Result<()>
fn atmosphere_register_external_code(
&mut self,
program_id: u64
) -> Result<MoveHandle>
fn atmosphere_unregister_external_code(&mut self, program_id: u64) -> Result<()>
fn sf_server_impl_set_program_argument_deprecated(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()>
fn sf_server_impl_set_program_argument(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()>
fn sf_server_impl_flush_arguments(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()>
fn sf_server_impl_atmosphere_register_external_code(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()>
fn sf_server_impl_atmosphere_unregister_external_code(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()>
fn get_sf_command_metadata_table(&self) -> CommandMetadataTable
Auto Trait Implementations
impl RefUnwindSafe for ShellInterface
impl Send for ShellInterface
impl Sync for ShellInterface
impl Unpin for ShellInterface
impl UnwindSafe for ShellInterface
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