Struct vfs::directory::entry::OpenRequest

source ·
pub struct OpenRequest<'a> { /* private fields */ }
Expand description

An open request.

Implementations§

source§

impl<'a> OpenRequest<'a>

source

pub fn new( scope: ExecutionScope, request_flags: impl Into<RequestFlags>, path: Path, object_request: ObjectRequestRef<'a>, ) -> Self

Creates a new open request.

source

pub fn path(&self) -> &Path

Returns the path for this request.

source

pub fn prepend_path(&mut self, prefix: &Path)

Prepends prefix to the path.

source

pub fn set_path(&mut self, path: Path)

Sets the path to path.

source

pub async fn wait_till_ready(&self) -> bool

Waits until the request has a request waiting in its channel. Returns immediately if this request requires sending an initial event such as OnOpen or OnRepresentation. Returns true if the channel is readable (rather than just clased).

source

pub fn requires_event(&self) -> bool

Returns true if the request requires the server to send an event (e.g. either OnOpen or OnRepresentation). If true, wait_till_ready will return immediately. If false, the caller might choose to call wait_till_ready if other conditions are satisfied (checking for an empty path is usually a good idea since it is hard to know where a non-empty path might end up being terminated).

source

pub fn open_dir(self, dir: Arc<impl Directory>) -> Result<(), Status>

Opens a directory.

source

pub fn open_file(self, file: Arc<impl FileLike>) -> Result<(), Status>

Opens a file.

Opens a symlink.

source

pub fn open_service(self, service: Arc<impl ServiceLike>) -> Result<(), Status>

Opens a service.

source

pub fn open_remote( self, remote: Arc<impl RemoteLike + Send + Sync + 'static>, ) -> Result<(), Status>

Forwards the request to a remote.

source

pub fn spawn(self, entry: Arc<impl DirectoryEntryAsync>)

Spawns a task to handle the request. entry must implement DirectoryEntryAsync.

source

pub fn scope(&self) -> &ExecutionScope

Returns the execution scope for this request.

source

pub fn set_scope(&mut self, scope: ExecutionScope)

Replaces the scope in this request. This is the right thing to do if any subsequently spawned tasks should be in a different scope to the task that received this open request.

Trait Implementations§

source§

impl<'a> Debug for OpenRequest<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for OpenRequest<'a>

§

impl<'a> !RefUnwindSafe for OpenRequest<'a>

§

impl<'a> Send for OpenRequest<'a>

§

impl<'a> Sync for OpenRequest<'a>

§

impl<'a> Unpin for OpenRequest<'a>

§

impl<'a> !UnwindSafe for OpenRequest<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T, D> Encode<Ambiguous1, D> for T
where D: ResourceDialect,

source§

unsafe fn encode( self, _encoder: &mut Encoder<'_, D>, _offset: usize, _depth: Depth, ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
source§

impl<T, D> Encode<Ambiguous2, D> for T
where D: ResourceDialect,

source§

unsafe fn encode( self, _encoder: &mut Encoder<'_, D>, _offset: usize, _depth: Depth, ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoAny for T
where T: 'static + Send + Sync,

source§

fn into_any(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Cast the given object into a dyn std::any::Any.
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more