Struct fidl_fuchsia_io::DirectoryProxy
source · pub struct DirectoryProxy { /* private fields */ }
Implementations§
source§impl DirectoryProxy
impl DirectoryProxy
sourcepub fn take_event_stream(&self) -> DirectoryEventStream
pub fn take_event_stream(&self) -> DirectoryEventStream
Get a Stream of events from the remote end of the protocol.
§Panics
Panics if the event stream was already taken.
sourcepub fn advisory_lock(
&self,
request: &AdvisoryLockRequest,
) -> QueryResponseFut<AdvisoryLockingAdvisoryLockResult, DefaultFuchsiaResourceDialect>
pub fn advisory_lock( &self, request: &AdvisoryLockRequest, ) -> QueryResponseFut<AdvisoryLockingAdvisoryLockResult, DefaultFuchsiaResourceDialect>
Acquires an advisory lock on the underlying file.
The lock lasts until either this connection is closed or this method is called with |AdvisoryLockType.UNLOCK| to release the lock explicitly.
Advisory locks are purely advisory. They do not prevent actual read or write operations from occurring on the file, either through this connection or through other connections.
This method requires the following rights:
- [
Rights.READ_BYTES
] ifrequest.type
is [AdvisoryLockType.READ
]. - [
Rights.WRITE_BYTES
] ifrequest.type
is [AdvisoryLockType.WRITE
].
§Errors
ZX_ERR_BAD_STATE
The specified type of lock cannot be acquired. For example, another connection might hold a conflicting lock type.ZX_ERR_NOT_SUPPORTED
This file does not support advisory locking.ZX_ERR_ACCESS_DENIED
This connection does not have sufficient rights to acquire the given type of lock.
pub fn clone2(&self, request: ServerEnd<CloneableMarker>) -> Result<(), Error>
sourcepub fn close(
&self,
) -> QueryResponseFut<CloseableCloseResult, DefaultFuchsiaResourceDialect>
pub fn close( &self, ) -> QueryResponseFut<CloseableCloseResult, DefaultFuchsiaResourceDialect>
Terminates the connection.
After calling Close
, the client must not send any other requests.
Servers, after sending the status response, should close the connection regardless of status and without sending an epitaph.
Closing the client end of the channel should be semantically equivalent
to calling Close
without knowing when the close has completed or its
status.
pub fn query(&self) -> QueryResponseFut<Vec<u8>, DefaultFuchsiaResourceDialect>
sourcepub fn clone(
&self,
flags: OpenFlags,
object: ServerEnd<NodeMarker>,
) -> Result<(), Error>
pub fn clone( &self, flags: OpenFlags, object: ServerEnd<NodeMarker>, ) -> Result<(), Error>
Create another connection to the same remote object.
flags
may be any of:
OpenFlags.RIGHT_*
OpenFlags.APPEND
OpenFlags.DESCRIBE
OpenFlags.CLONE_SAME_RIGHTS
All other flags are ignored.
The OpenFlags.RIGHT_*
bits in flags
request corresponding rights over the resulting
cloned object.
The cloned object must have rights less than or equal to the original object, otherwise
returns ZX_ERR_ACCESS_DENIED
.
Alternatively, pass OpenFlags.CLONE_SAME_RIGHTS
to inherit the rights on the source connection.
It is invalid to pass any of the OpenFlags.RIGHT_*
flags together with
OpenFlags.CLONE_SAME_RIGHTS
.
sourcepub fn get_attr(
&self,
) -> QueryResponseFut<(i32, NodeAttributes), DefaultFuchsiaResourceDialect>
pub fn get_attr( &self, ) -> QueryResponseFut<(i32, NodeAttributes), DefaultFuchsiaResourceDialect>
Acquires information about the node.
This method does not require any rights.
sourcepub fn set_attr(
&self,
flags: NodeAttributeFlags,
attributes: &NodeAttributes,
) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
pub fn set_attr( &self, flags: NodeAttributeFlags, attributes: &NodeAttributes, ) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
Updates information about the node.
Returns ZX_ERR_NOT_SUPPORTED
if any attributes specified by [flags
] are not supported.
This method requires following rights: OpenFlags.RIGHT_WRITABLE
, otherwise returns
ZX_ERR_BAD_HANDLE
.
sourcepub fn get_flags(
&self,
) -> QueryResponseFut<(i32, OpenFlags), DefaultFuchsiaResourceDialect>
pub fn get_flags( &self, ) -> QueryResponseFut<(i32, OpenFlags), DefaultFuchsiaResourceDialect>
Acquires the Directory.Open
rights and flags used to access this file.
This method does not require any rights.
sourcepub fn set_flags(
&self,
flags: OpenFlags,
) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
pub fn set_flags( &self, flags: OpenFlags, ) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
Changes the Directory.Open
flags used to access the file.
Supported flags which can be turned on / off:
OpenFlags.APPEND
This method does not require any rights.
sourcepub fn query_filesystem(
&self,
) -> QueryResponseFut<(i32, Option<Box<FilesystemInfo>>), DefaultFuchsiaResourceDialect>
pub fn query_filesystem( &self, ) -> QueryResponseFut<(i32, Option<Box<FilesystemInfo>>), DefaultFuchsiaResourceDialect>
Query the filesystem for filesystem-specific information.
sourcepub fn get_connection_info(
&self,
) -> QueryResponseFut<ConnectionInfo, DefaultFuchsiaResourceDialect>
pub fn get_connection_info( &self, ) -> QueryResponseFut<ConnectionInfo, DefaultFuchsiaResourceDialect>
Acquires information about the connection.
This method does not require any rights.
sourcepub fn get_attributes(
&self,
query: NodeAttributesQuery,
) -> QueryResponseFut<NodeGetAttributesResult, DefaultFuchsiaResourceDialect>
pub fn get_attributes( &self, query: NodeAttributesQuery, ) -> QueryResponseFut<NodeGetAttributesResult, DefaultFuchsiaResourceDialect>
Acquires information about the node.
The attributes of a node should be stable, independent of the specific protocol used to access it.
If a particular attribute is not applicable or not supported, filesystems should leave the corresponding field absent.
query
a bit-mask specifying which attributes to fetch. The server should not return more than necessary.
attributes
the returned attributes.
This method requires the [Rights.GET_ATTRIBUTES
] right.
sourcepub fn update_attributes(
&self,
payload: &MutableNodeAttributes,
) -> QueryResponseFut<NodeUpdateAttributesResult, DefaultFuchsiaResourceDialect>
pub fn update_attributes( &self, payload: &MutableNodeAttributes, ) -> QueryResponseFut<NodeUpdateAttributesResult, DefaultFuchsiaResourceDialect>
Updates information about the node.
attributes
the presence of a table field inattributes
indicates the intent to update the corresponding attribute.
Returns ZX_ERR_NOT_SUPPORTED
if the node does not support any of the specified attributes.
This method requires the [Rights.UPDATE_ATTRIBUTES
] right.
sourcepub fn sync(
&self,
) -> QueryResponseFut<NodeSyncResult, DefaultFuchsiaResourceDialect>
pub fn sync( &self, ) -> QueryResponseFut<NodeSyncResult, DefaultFuchsiaResourceDialect>
Synchronizes updates to the node to the underlying media, if it exists.
This method will return when the filesystem server has flushed the
relevant updates to the underlying media, but does not guarantee the
underlying media has persisted the information, nor that any information
is committed to hardware. Clients may use Sync
to ensure ordering
between operations.
This method does not require any rights.
sourcepub fn list_extended_attributes(
&self,
iterator: ServerEnd<ExtendedAttributeIteratorMarker>,
) -> Result<(), Error>
pub fn list_extended_attributes( &self, iterator: ServerEnd<ExtendedAttributeIteratorMarker>, ) -> Result<(), Error>
Creates an iterator over all the extended attribute names associated with this node. If an error occurs it is returned as an epitaph on the iterator request channel, and then the channel is closed.
GetExtendedAttributes can be used with any of these names to retrieve the associated value.
This method requires the [Rights.GET_ATTRIBUTES
] right.
sourcepub fn get_extended_attribute(
&self,
name: &[u8],
) -> QueryResponseFut<NodeGetExtendedAttributeResult, DefaultFuchsiaResourceDialect>
pub fn get_extended_attribute( &self, name: &[u8], ) -> QueryResponseFut<NodeGetExtendedAttributeResult, DefaultFuchsiaResourceDialect>
Get the value associated with the given attribute name
for this node.
Attribute names have a maximum length of MAX_ATTRIBUTE_NAME. No particular structure is imposed on them.
This method requires the [Rights.GET_ATTRIBUTES
] right.
sourcepub fn set_extended_attribute(
&self,
name: &[u8],
value: ExtendedAttributeValue,
mode: SetExtendedAttributeMode,
) -> QueryResponseFut<NodeSetExtendedAttributeResult, DefaultFuchsiaResourceDialect>
pub fn set_extended_attribute( &self, name: &[u8], value: ExtendedAttributeValue, mode: SetExtendedAttributeMode, ) -> QueryResponseFut<NodeSetExtendedAttributeResult, DefaultFuchsiaResourceDialect>
Set the value for the given attribute name
to value
for this node.
The attribute name may exist, in which case the attribute is updated. If the attribute doesn’t exist, it is created. The name should have no null bytes in it. If it does, ZX_ERR_INVALID_ARGS is returned.
This method requires the [Rights.UPDATE_ATTRIBUTES
] right.
sourcepub fn remove_extended_attribute(
&self,
name: &[u8],
) -> QueryResponseFut<NodeRemoveExtendedAttributeResult, DefaultFuchsiaResourceDialect>
pub fn remove_extended_attribute( &self, name: &[u8], ) -> QueryResponseFut<NodeRemoveExtendedAttributeResult, DefaultFuchsiaResourceDialect>
Remove the specified extended attribute.
If the attribute doesn’t exist, ZX_ERR_NOT_FOUND is returned.
This method requires the [Rights.UPDATE_ATTRIBUTES
] right.
sourcepub fn open(
&self,
flags: OpenFlags,
mode: ModeType,
path: &str,
object: ServerEnd<NodeMarker>,
) -> Result<(), Error>
pub fn open( &self, flags: OpenFlags, mode: ModeType, path: &str, object: ServerEnd<NodeMarker>, ) -> Result<(), Error>
Opens a new object relative to this directory object.
path
may contain multiple segments, separated by “/” characters, and should never be
empty; i.e. “” is an invalid path. A trailing slash implies OpenFlags.DIRECTORY. Components
must not be empty (i.e. “foo//bar” is invalid). “..” is disallowed anywhere in the path. “.”
is only allowed if the path is exactly “.”, but not otherwise. A leading ‘/’ is allowed (and
is treated the same way as if not present, i.e. “/foo/bar’ and “foo/bar” are the same).
If an unknown value is sent for flags the connection should be closed.
OpenFlags.RIGHT_*
flags provided in flags
will restrict access rights on
the object
channel which will be connected to the opened entity.
Rights are never increased. When you open a nested entity within a directory, you may only
request the same rights as what the directory connection already has, or a subset of those.
Exceeding those rights causes an access denied error to be transmitted in the
OnOpen
event if applicable, and the object
connection closed.
mode
is ignored.
sourcepub fn open2(
&self,
path: &str,
protocols: &ConnectionProtocols,
object_request: Channel,
) -> Result<(), Error>
pub fn open2( &self, path: &str, protocols: &ConnectionProtocols, object_request: Channel, ) -> Result<(), Error>
Opens or creates a new node relative to this directory node.
This method requires the following rights on the current connection:
- [
Rights.ENUMERATE
] - [
Rights.TRAVERSE
]
Errors are presented as an epitaph on the object_request
channel.
- error
ZX_ERR_ACCESS_DENIED
if the requested rights exceeds what is allowed. - error
ZX_ERR_BAD_PATH
ifpath
is invalid.
sourcepub fn open3(
&self,
path: &str,
flags: Flags,
options: &Options,
object: Channel,
) -> Result<(), Error>
pub fn open3( &self, path: &str, flags: Flags, options: &Options, object: Channel, ) -> Result<(), Error>
Open (or create) a node relative to this directory. Any errors are communicated via an
epitaph sent on the object
channel.
Errors:
ZX_ERR_BAD_PATH
ifpath
is invalid- See
Flags
for other errors which may be communicated based onflags
sourcepub fn read_dirents(
&self,
max_bytes: u64,
) -> QueryResponseFut<(i32, Vec<u8>), DefaultFuchsiaResourceDialect>
pub fn read_dirents( &self, max_bytes: u64, ) -> QueryResponseFut<(i32, Vec<u8>), DefaultFuchsiaResourceDialect>
Reads a collection of variably sized dirents into a buffer.
The number of dirents in a directory may be very large: akin to
calling read multiple times on a file, directories have a seek
offset which is updated on subsequent calls to ReadDirents.
Each call to ReadDirents will only return whole dirent structures,
they will not get split across ReadDirent calls. When the seek
offset reaches the end, dirents
will be empty.
These dirents are of the form:
struct dirent {
// Describes the inode of the entry.
uint64 ino;
// Describes the length of the dirent name in bytes.
uint8 size;
// Describes the type of the entry. Aligned with the
// POSIX d_type values. Use `DirentType` constants.
uint8 type;
// Unterminated name of entry.
char name[0];
}
This method does not require any rights, since one could always probe for directory contents by triggering name conflicts during file creation.
sourcepub fn rewind(&self) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
pub fn rewind(&self) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
Resets the directory seek offset.
This method does not require any rights, similar to ReadDirents.
sourcepub fn get_token(
&self,
) -> QueryResponseFut<(i32, Option<Handle>), DefaultFuchsiaResourceDialect>
pub fn get_token( &self, ) -> QueryResponseFut<(i32, Option<Handle>), DefaultFuchsiaResourceDialect>
Acquires a token to a Directory which can be used to identify access to it at a later point in time. The token will remain valid for as long as the connection requesting the token remains open.
This method requires following rights: OpenFlags.RIGHT_WRITABLE
, otherwise returns
ZX_ERR_BAD_HANDLE
.
sourcepub fn link(
&self,
src: &str,
dst_parent_token: Handle,
dst: &str,
) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
pub fn link( &self, src: &str, dst_parent_token: Handle, dst: &str, ) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
Creates a link to an object named src by the name dst, within a directory represented by token.
src
must be a resolved object name. Including “/” in the string will
return ZX_ERR_INVALID_ARGS
.
dst
must be a resolved object name. Including “/” in the string will
return ZX_ERR_INVALID_ARGS
.
This method requires following rights: OpenFlags.RIGHT_WRITABLE
and
OpenFlags.RIGHT_READABLE
, otherwise returns ZX_ERR_BAD_HANDLE
.
This will be atomic with respect to renaming or unlinking the source concurrently e.g. if there are two actors operating concurrently, and one actor performs a rename that affects the source within this directory, and the other does a link, each will appear to occur atomically in an unspecified order.
sourcepub fn unlink(
&self,
name: &str,
options: &UnlinkOptions,
) -> QueryResponseFut<DirectoryUnlinkResult, DefaultFuchsiaResourceDialect>
pub fn unlink( &self, name: &str, options: &UnlinkOptions, ) -> QueryResponseFut<DirectoryUnlinkResult, DefaultFuchsiaResourceDialect>
Removes a child node from the this directory’s list of entries.
Note: this does not guarantee that the underlying object is destroyed. Although the link will be removed from the containing directory, objects with multiple references (such as files which are still open) will not actually be destroyed until all references are closed.
- error
ZX_ERR_ACCESS_DENIED
if the connection does not have [Rights.WRITE_BYTES
]. - error
ZX_ERR_NOT_SUPPORTED
if the underlying filesystem does not support writing. - error
ZX_ERR_BAD_PATH
ifname
is invalid. - error
ZX_ERR_NOT_EMPTY
ifname
refers to a non-empty directory. - error
ZX_ERR_UNAVAILABLE
ifname
refers to a mount point, containing a remote channel. - error
ZX_ERR_NOT_DIR
if the options requested a directory but something other than a directory was found.
Other errors may be returned for filesystem-specific reasons.
This method requires the following rights:
- [
Rights.ENUMERATE
] - [
Rights.MODIFY_DIRECTORY
]
sourcepub fn rename(
&self,
src: &str,
dst_parent_token: Event,
dst: &str,
) -> QueryResponseFut<DirectoryRenameResult, DefaultFuchsiaResourceDialect>
pub fn rename( &self, src: &str, dst_parent_token: Event, dst: &str, ) -> QueryResponseFut<DirectoryRenameResult, DefaultFuchsiaResourceDialect>
Renames a node named src
to the name dst
, in a directory represented
by dst_parent_token
.
src
and dst
must be valid node names.
See Name
for what constitutes a valid name.
This method requires the following rights on both the current connection, and the connection
identified by dst_parent_token
:
- [
Rights.ENUMERATE
] - [
Rights.MODIFY_DIRECTORY
]
The following requirements are necessary to avoid rights escalations.
If the source and destination directory differ, the source directory must also have the
maximal set of abilities supported for files, which would typically be
[Rights.READ_BYTES
], [Rights.WRITE_BYTES
], [Rights.GET_ATTRIBUTES
] and
[Rights.UPDATE_ATTRIBUTES
]. Some filesystems might also support the [Rights.EXECUTE
]
right.
If src
refers to a directory, and differs from the destination directory, then the source
directory must have also have the [Rights.CONNECT
] and [Rights.TRAVERSE
] rights.
- error
ZX_ERR_INVALID_ARGS
ifsrc
ordst
is invalid. - error
ZX_ERR_ACCESS_DENIED
for insufficient rights.
sourcepub fn create_symlink(
&self,
name: &str,
target: &[u8],
connection: Option<ServerEnd<SymlinkMarker>>,
) -> QueryResponseFut<DirectoryCreateSymlinkResult, DefaultFuchsiaResourceDialect>
pub fn create_symlink( &self, name: &str, target: &[u8], connection: Option<ServerEnd<SymlinkMarker>>, ) -> QueryResponseFut<DirectoryCreateSymlinkResult, DefaultFuchsiaResourceDialect>
Creates a symbolic link.
name
is the name to be given to the created symbolic link.
target
is the target of the symbolic link, which has no meaning on the server. The server
will perform no validation of target
except for a server chosen maximum length.
connection
is an optional server end of a channel that will speak the Symlink protocol
on the successfully created node.
-
[
Rights.MODIFY_DIRECTORY
] -
error
ZX_ERR_ALREADY_EXISTS
ifname
already exists. -
error
ZX_ERR_BAD_PATH
iftarget
exceeds the server length limit for symbolic links. -
error
ZX_ERR_INVALID_ARGS
ifname
is not a validName
. -
error
ZX_ERR_NOT_SUPPORTED
if creating symbolic links is not supported by the server.
sourcepub fn watch(
&self,
mask: WatchMask,
options: u32,
watcher: ServerEnd<DirectoryWatcherMarker>,
) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
pub fn watch( &self, mask: WatchMask, options: u32, watcher: ServerEnd<DirectoryWatcherMarker>, ) -> QueryResponseFut<i32, DefaultFuchsiaResourceDialect>
Watches a directory, receiving events of added messages on the watcher request channel.
Options must be zero; it is reserved.
This method does not require any rights, similar to ReadDirents.
Trait Implementations§
source§impl Clone for DirectoryProxy
impl Clone for DirectoryProxy
source§fn clone(&self) -> DirectoryProxy
fn clone(&self) -> DirectoryProxy
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DirectoryProxy
impl Debug for DirectoryProxy
source§impl DirectoryProxyInterface for DirectoryProxy
impl DirectoryProxyInterface for DirectoryProxy
type AdvisoryLockResponseFut = QueryResponseFut<Result<(), i32>>
fn advisory_lock( &self, request: &AdvisoryLockRequest, ) -> Self::AdvisoryLockResponseFut
fn clone2(&self, request: ServerEnd<CloneableMarker>) -> Result<(), Error>
type CloseResponseFut = QueryResponseFut<Result<(), i32>>
fn close(&self) -> Self::CloseResponseFut
type QueryResponseFut = QueryResponseFut<Vec<u8>>
fn query(&self) -> Self::QueryResponseFut
fn clone( &self, flags: OpenFlags, object: ServerEnd<NodeMarker>, ) -> Result<(), Error>
type GetAttrResponseFut = QueryResponseFut<(i32, NodeAttributes)>
fn get_attr(&self) -> Self::GetAttrResponseFut
type SetAttrResponseFut = QueryResponseFut<i32>
fn set_attr( &self, flags: NodeAttributeFlags, attributes: &NodeAttributes, ) -> Self::SetAttrResponseFut
type GetFlagsResponseFut = QueryResponseFut<(i32, OpenFlags)>
fn get_flags(&self) -> Self::GetFlagsResponseFut
type SetFlagsResponseFut = QueryResponseFut<i32>
fn set_flags(&self, flags: OpenFlags) -> Self::SetFlagsResponseFut
type QueryFilesystemResponseFut = QueryResponseFut<(i32, Option<Box<FilesystemInfo>>)>
fn query_filesystem(&self) -> Self::QueryFilesystemResponseFut
type GetConnectionInfoResponseFut = QueryResponseFut<ConnectionInfo>
fn get_connection_info(&self) -> Self::GetConnectionInfoResponseFut
type GetAttributesResponseFut = QueryResponseFut<Result<(MutableNodeAttributes, ImmutableNodeAttributes), i32>>
fn get_attributes( &self, query: NodeAttributesQuery, ) -> Self::GetAttributesResponseFut
type UpdateAttributesResponseFut = QueryResponseFut<Result<(), i32>>
fn update_attributes( &self, payload: &MutableNodeAttributes, ) -> Self::UpdateAttributesResponseFut
type SyncResponseFut = QueryResponseFut<Result<(), i32>>
fn sync(&self) -> Self::SyncResponseFut
fn list_extended_attributes( &self, iterator: ServerEnd<ExtendedAttributeIteratorMarker>, ) -> Result<(), Error>
type GetExtendedAttributeResponseFut = QueryResponseFut<Result<ExtendedAttributeValue, i32>>
fn get_extended_attribute( &self, name: &[u8], ) -> Self::GetExtendedAttributeResponseFut
type SetExtendedAttributeResponseFut = QueryResponseFut<Result<(), i32>>
fn set_extended_attribute( &self, name: &[u8], value: ExtendedAttributeValue, mode: SetExtendedAttributeMode, ) -> Self::SetExtendedAttributeResponseFut
type RemoveExtendedAttributeResponseFut = QueryResponseFut<Result<(), i32>>
fn remove_extended_attribute( &self, name: &[u8], ) -> Self::RemoveExtendedAttributeResponseFut
fn open( &self, flags: OpenFlags, mode: ModeType, path: &str, object: ServerEnd<NodeMarker>, ) -> Result<(), Error>
fn open2( &self, path: &str, protocols: &ConnectionProtocols, object_request: Channel, ) -> Result<(), Error>
fn open3( &self, path: &str, flags: Flags, options: &Options, object: Channel, ) -> Result<(), Error>
type ReadDirentsResponseFut = QueryResponseFut<(i32, Vec<u8>)>
fn read_dirents(&self, max_bytes: u64) -> Self::ReadDirentsResponseFut
type RewindResponseFut = QueryResponseFut<i32>
fn rewind(&self) -> Self::RewindResponseFut
type GetTokenResponseFut = QueryResponseFut<(i32, Option<Handle>)>
fn get_token(&self) -> Self::GetTokenResponseFut
type LinkResponseFut = QueryResponseFut<i32>
fn link( &self, src: &str, dst_parent_token: Handle, dst: &str, ) -> Self::LinkResponseFut
type UnlinkResponseFut = QueryResponseFut<Result<(), i32>>
fn unlink(&self, name: &str, options: &UnlinkOptions) -> Self::UnlinkResponseFut
type RenameResponseFut = QueryResponseFut<Result<(), i32>>
fn rename( &self, src: &str, dst_parent_token: Event, dst: &str, ) -> Self::RenameResponseFut
type CreateSymlinkResponseFut = QueryResponseFut<Result<(), i32>>
fn create_symlink( &self, name: &str, target: &[u8], connection: Option<ServerEnd<SymlinkMarker>>, ) -> Self::CreateSymlinkResponseFut
type WatchResponseFut = QueryResponseFut<i32>
fn watch( &self, mask: WatchMask, options: u32, watcher: ServerEnd<DirectoryWatcherMarker>, ) -> Self::WatchResponseFut
source§impl Proxy for DirectoryProxy
impl Proxy for DirectoryProxy
§type Protocol = DirectoryMarker
type Protocol = DirectoryMarker
Proxy
controls.source§fn from_channel(inner: AsyncChannel) -> Self
fn from_channel(inner: AsyncChannel) -> Self
source§fn into_channel(self) -> Result<AsyncChannel, Self>
fn into_channel(self) -> Result<AsyncChannel, Self>
source§fn as_channel(&self) -> &AsyncChannel
fn as_channel(&self) -> &AsyncChannel
§fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>
fn into_client_end(self) -> Result<ClientEnd<Self::Protocol>, Self>
Auto Trait Implementations§
impl Freeze for DirectoryProxy
impl !RefUnwindSafe for DirectoryProxy
impl Send for DirectoryProxy
impl Sync for DirectoryProxy
impl Unpin for DirectoryProxy
impl !UnwindSafe for DirectoryProxy
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)