pub enum ExtendedAttributeIteratorRequest {
GetNext {
responder: ExtendedAttributeIteratorGetNextResponder,
},
}
Variants§
GetNext
Get the next chunk of extended attribute names. If this is the last chunk, last will be true, and the channel will be closed after the call.
Fields
§
responder: ExtendedAttributeIteratorGetNextResponder
Implementations§
source§impl ExtendedAttributeIteratorRequest
impl ExtendedAttributeIteratorRequest
pub fn into_get_next(self) -> Option<ExtendedAttributeIteratorGetNextResponder>
sourcepub fn method_name(&self) -> &'static str
pub fn method_name(&self) -> &'static str
Name of the method defined in FIDL
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExtendedAttributeIteratorRequest
impl !RefUnwindSafe for ExtendedAttributeIteratorRequest
impl Send for ExtendedAttributeIteratorRequest
impl Sync for ExtendedAttributeIteratorRequest
impl Unpin for ExtendedAttributeIteratorRequest
impl !UnwindSafe for ExtendedAttributeIteratorRequest
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