pub struct MappingSessionSynchronousProxy { /* private fields */ }Implementations§
Source§impl MappingSessionSynchronousProxy
impl MappingSessionSynchronousProxy
pub fn new(channel: Channel) -> Self
pub fn into_channel(self) -> Channel
Sourcepub fn wait_for_event(
&self,
deadline: MonotonicInstant,
) -> Result<MappingSessionEvent, Error>
pub fn wait_for_event( &self, deadline: MonotonicInstant, ) -> Result<MappingSessionEvent, Error>
Waits until an event arrives and returns it. It is safe for other threads to make concurrent requests while waiting for an event.
Sourcepub fn open(
&self,
key: u64,
identifier: &[u8],
___deadline: MonotonicInstant,
) -> Result<MappingSessionOpenResult, Error>
pub fn open( &self, key: u64, identifier: &[u8], ___deadline: MonotonicInstant, ) -> Result<MappingSessionOpenResult, Error>
Registers a node’s extents in the mapping session, returning its uncompressed size in bytes.
The filesystem resolves the identifier to locate the node on disk and transmits its
extent mappings to the block driver associated with key.
Sourcepub fn close(
&self,
key: u64,
___deadline: MonotonicInstant,
) -> Result<MappingSessionCloseResult, Error>
pub fn close( &self, key: u64, ___deadline: MonotonicInstant, ) -> Result<MappingSessionCloseResult, Error>
Unregisters a node’s extents from the session by its session-unique key.
Trait Implementations§
Source§impl From<Channel> for MappingSessionSynchronousProxy
Available on Fuchsia only.
impl From<Channel> for MappingSessionSynchronousProxy
Available on Fuchsia only.
Source§impl From<MappingSessionSynchronousProxy> for NullableHandle
Available on Fuchsia only.
impl From<MappingSessionSynchronousProxy> for NullableHandle
Available on Fuchsia only.
Source§fn from(value: MappingSessionSynchronousProxy) -> Self
fn from(value: MappingSessionSynchronousProxy) -> Self
Converts to this type from the input type.
Source§impl FromClient for MappingSessionSynchronousProxy
Available on Fuchsia only.
impl FromClient for MappingSessionSynchronousProxy
Available on Fuchsia only.
Source§type Protocol = MappingSessionMarker
type Protocol = MappingSessionMarker
The protocol.
Source§fn from_client(value: ClientEnd<MappingSessionMarker>) -> Self
fn from_client(value: ClientEnd<MappingSessionMarker>) -> Self
Converts from a client.
Source§impl SynchronousProxy for MappingSessionSynchronousProxy
Available on Fuchsia only.
impl SynchronousProxy for MappingSessionSynchronousProxy
Available on Fuchsia only.
Source§type Proxy = MappingSessionProxy
type Proxy = MappingSessionProxy
The async proxy for the same protocol.
Source§type Protocol = MappingSessionMarker
type Protocol = MappingSessionMarker
The protocol which this
Proxy controls.Source§fn from_channel(inner: Channel) -> Self
fn from_channel(inner: Channel) -> Self
Create a proxy over the given channel.
Source§fn into_channel(self) -> Channel
fn into_channel(self) -> Channel
Convert the proxy back into a channel.
Source§fn as_channel(&self) -> &Channel
fn as_channel(&self) -> &Channel
Get a reference to the proxy’s underlying channel. Read more
Auto Trait Implementations§
impl Freeze for MappingSessionSynchronousProxy
impl RefUnwindSafe for MappingSessionSynchronousProxy
impl Send for MappingSessionSynchronousProxy
impl Sync for MappingSessionSynchronousProxy
impl Unpin for MappingSessionSynchronousProxy
impl UnsafeUnpin for MappingSessionSynchronousProxy
impl UnwindSafe for MappingSessionSynchronousProxy
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