pub trait RegisteredView {
// Required methods
fn agent_name(&self) -> &str;
fn descriptor(&self) -> NixlDescriptor;
}Expand description
View trait for accessing registration information without unwrapping.
Required Methods§
Sourcefn agent_name(&self) -> &str
fn agent_name(&self) -> &str
Get the name of the NIXL agent that registered this memory.
Sourcefn descriptor(&self) -> NixlDescriptor
fn descriptor(&self) -> NixlDescriptor
Get the NIXL descriptor for this registered memory.