fidl_fuchsia_io

Trait SymlinkProxyInterface

Source
pub trait SymlinkProxyInterface: Send + Sync {
Show 39 associated items type LinkIntoResponseFut: Future<Output = Result<LinkableLinkIntoResult, Error>> + Send; type CloseResponseFut: Future<Output = Result<CloseableCloseResult, Error>> + Send; type QueryResponseFut: Future<Output = Result<Vec<u8>, Error>> + Send; type GetAttrResponseFut: Future<Output = Result<(i32, NodeAttributes), Error>> + Send; type SetAttrResponseFut: Future<Output = Result<i32, Error>> + Send; type GetFlagsResponseFut: Future<Output = Result<(i32, OpenFlags), Error>> + Send; type SetFlagsResponseFut: Future<Output = Result<i32, Error>> + Send; type GetFlags2ResponseFut: Future<Output = Result<NodeGetFlags2Result, Error>> + Send; type SetFlags2ResponseFut: Future<Output = Result<NodeSetFlags2Result, Error>> + Send; type QueryFilesystemResponseFut: Future<Output = Result<(i32, Option<Box<FilesystemInfo>>), Error>> + Send; type GetConnectionInfoResponseFut: Future<Output = Result<ConnectionInfo, Error>> + Send; type GetAttributesResponseFut: Future<Output = Result<NodeGetAttributesResult, Error>> + Send; type UpdateAttributesResponseFut: Future<Output = Result<NodeUpdateAttributesResult, Error>> + Send; type SyncResponseFut: Future<Output = Result<NodeSyncResult, Error>> + Send; type GetExtendedAttributeResponseFut: Future<Output = Result<NodeGetExtendedAttributeResult, Error>> + Send; type SetExtendedAttributeResponseFut: Future<Output = Result<NodeSetExtendedAttributeResult, Error>> + Send; type RemoveExtendedAttributeResponseFut: Future<Output = Result<NodeRemoveExtendedAttributeResult, Error>> + Send; type DescribeResponseFut: Future<Output = Result<SymlinkInfo, Error>> + Send; // Required methods fn link_into( &self, dst_parent_token: Event, dst: &str, ) -> Self::LinkIntoResponseFut; fn clone(&self, request: ServerEnd<CloneableMarker>) -> Result<(), Error>; fn close(&self) -> Self::CloseResponseFut; fn query(&self) -> Self::QueryResponseFut; fn deprecated_clone( &self, flags: OpenFlags, object: ServerEnd<NodeMarker>, ) -> Result<(), Error>; fn get_attr(&self) -> Self::GetAttrResponseFut; fn set_attr( &self, flags: NodeAttributeFlags, attributes: &NodeAttributes, ) -> Self::SetAttrResponseFut; fn get_flags(&self) -> Self::GetFlagsResponseFut; fn set_flags(&self, flags: OpenFlags) -> Self::SetFlagsResponseFut; fn get_flags2(&self) -> Self::GetFlags2ResponseFut; fn set_flags2(&self, flags: Flags) -> Self::SetFlags2ResponseFut; fn query_filesystem(&self) -> Self::QueryFilesystemResponseFut; fn get_connection_info(&self) -> Self::GetConnectionInfoResponseFut; fn get_attributes( &self, query: NodeAttributesQuery, ) -> Self::GetAttributesResponseFut; fn update_attributes( &self, payload: &MutableNodeAttributes, ) -> Self::UpdateAttributesResponseFut; fn sync(&self) -> Self::SyncResponseFut; fn list_extended_attributes( &self, iterator: ServerEnd<ExtendedAttributeIteratorMarker>, ) -> Result<(), Error>; fn get_extended_attribute( &self, name: &[u8], ) -> Self::GetExtendedAttributeResponseFut; fn set_extended_attribute( &self, name: &[u8], value: ExtendedAttributeValue, mode: SetExtendedAttributeMode, ) -> Self::SetExtendedAttributeResponseFut; fn remove_extended_attribute( &self, name: &[u8], ) -> Self::RemoveExtendedAttributeResponseFut; fn describe(&self) -> Self::DescribeResponseFut;
}

Required Associated Types§

Source

type LinkIntoResponseFut: Future<Output = Result<LinkableLinkIntoResult, Error>> + Send

Source

type CloseResponseFut: Future<Output = Result<CloseableCloseResult, Error>> + Send

Source

type QueryResponseFut: Future<Output = Result<Vec<u8>, Error>> + Send

Source

type GetAttrResponseFut: Future<Output = Result<(i32, NodeAttributes), Error>> + Send

Source

type SetAttrResponseFut: Future<Output = Result<i32, Error>> + Send

Source

type GetFlagsResponseFut: Future<Output = Result<(i32, OpenFlags), Error>> + Send

Source

type SetFlagsResponseFut: Future<Output = Result<i32, Error>> + Send

Source

type GetFlags2ResponseFut: Future<Output = Result<NodeGetFlags2Result, Error>> + Send

Source

type SetFlags2ResponseFut: Future<Output = Result<NodeSetFlags2Result, Error>> + Send

Source

type QueryFilesystemResponseFut: Future<Output = Result<(i32, Option<Box<FilesystemInfo>>), Error>> + Send

Source

type GetConnectionInfoResponseFut: Future<Output = Result<ConnectionInfo, Error>> + Send

Source

type GetAttributesResponseFut: Future<Output = Result<NodeGetAttributesResult, Error>> + Send

Source

type UpdateAttributesResponseFut: Future<Output = Result<NodeUpdateAttributesResult, Error>> + Send

Source

type SyncResponseFut: Future<Output = Result<NodeSyncResult, Error>> + Send

Source

type GetExtendedAttributeResponseFut: Future<Output = Result<NodeGetExtendedAttributeResult, Error>> + Send

Source

type SetExtendedAttributeResponseFut: Future<Output = Result<NodeSetExtendedAttributeResult, Error>> + Send

Source

type RemoveExtendedAttributeResponseFut: Future<Output = Result<NodeRemoveExtendedAttributeResult, Error>> + Send

Source

type DescribeResponseFut: Future<Output = Result<SymlinkInfo, Error>> + Send

Required Methods§

Source

fn clone(&self, request: ServerEnd<CloneableMarker>) -> Result<(), Error>

Source

fn close(&self) -> Self::CloseResponseFut

Source

fn query(&self) -> Self::QueryResponseFut

Source

fn deprecated_clone( &self, flags: OpenFlags, object: ServerEnd<NodeMarker>, ) -> Result<(), Error>

Source

fn get_attr(&self) -> Self::GetAttrResponseFut

Source

fn set_attr( &self, flags: NodeAttributeFlags, attributes: &NodeAttributes, ) -> Self::SetAttrResponseFut

Source

fn get_flags(&self) -> Self::GetFlagsResponseFut

Source

fn set_flags(&self, flags: OpenFlags) -> Self::SetFlagsResponseFut

Source

fn get_flags2(&self) -> Self::GetFlags2ResponseFut

Source

fn set_flags2(&self, flags: Flags) -> Self::SetFlags2ResponseFut

Source

fn query_filesystem(&self) -> Self::QueryFilesystemResponseFut

Source

fn get_connection_info(&self) -> Self::GetConnectionInfoResponseFut

Source

fn get_attributes( &self, query: NodeAttributesQuery, ) -> Self::GetAttributesResponseFut

Source

fn update_attributes( &self, payload: &MutableNodeAttributes, ) -> Self::UpdateAttributesResponseFut

Source

fn sync(&self) -> Self::SyncResponseFut

Source

fn list_extended_attributes( &self, iterator: ServerEnd<ExtendedAttributeIteratorMarker>, ) -> Result<(), Error>

Source

fn get_extended_attribute( &self, name: &[u8], ) -> Self::GetExtendedAttributeResponseFut

Source

fn set_extended_attribute( &self, name: &[u8], value: ExtendedAttributeValue, mode: SetExtendedAttributeMode, ) -> Self::SetExtendedAttributeResponseFut

Source

fn remove_extended_attribute( &self, name: &[u8], ) -> Self::RemoveExtendedAttributeResponseFut

Source

fn describe(&self) -> Self::DescribeResponseFut

Implementors§