pub struct PmModule { /* private fields */ }
Trait Implementations
sourceimpl IClientObject for PmModule
impl IClientObject for PmModule
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 PmModule
impl IObject for PmModule
fn get_command_metadata_table(&self) -> CommandMetadataTable
fn call_self_server_command(
&mut self,
command_fn: CommandFn,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()>
sourceimpl IPmModule for PmModule
impl IPmModule for PmModule
fn initialize(
&mut self,
id: ModuleId,
dependencies: InMapAliasBuffer<ModuleId>
) -> Result<CopyHandle>
fn get_request(&mut self) -> Result<(State, u32)>
fn acknowledge(&mut self) -> Result<()>
fn finalize(&mut self) -> Result<()>
fn acknowledge_ex(&mut self, state: State) -> Result<()>
fn sf_server_impl_initialize(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()>
fn sf_server_impl_get_request(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()>
fn sf_server_impl_acknowledge(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()>
fn sf_server_impl_finalize(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()>
fn sf_server_impl_acknowledge_ex(
&mut self,
protocol: CommandProtocol,
ctx: &mut ServerContext<'_>
) -> Result<()>
fn get_sf_command_metadata_table(&self) -> CommandMetadataTable
Auto Trait Implementations
impl RefUnwindSafe for PmModule
impl Send for PmModule
impl Sync for PmModule
impl Unpin for PmModule
impl UnwindSafe for PmModule
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