pub struct PrimarySelectionOffer {
pub(crate) offer: ZwpPrimarySelectionOfferV1,
}
Expand description
Wrapper around the ZwpPrimarySelectionOfferV1
.
Fields§
§offer: ZwpPrimarySelectionOfferV1
Implementations§
source§impl PrimarySelectionOffer
impl PrimarySelectionOffer
sourcepub fn with_mime_types<T, F: Fn(&[String]) -> T>(&self, callback: F) -> T
pub fn with_mime_types<T, F: Fn(&[String]) -> T>(&self, callback: F) -> T
Inspect the mime types available on the given offer.
sourcepub fn receive(&self, mime_type: String) -> Result<ReadPipe>
pub fn receive(&self, mime_type: String) -> Result<ReadPipe>
Request to receive the data of a given mime type.
You can call this function several times.
Note that you should not read the contents right away in a blocking way, as you may deadlock your application doing so. At least make sure you flush your events to the server before doing so.
Fails if too many file descriptors were already open and a pipe could not be created.
sourcepub fn receive_to_fd(&self, mime_type: String, writefd: OwnedFd)
pub fn receive_to_fd(&self, mime_type: String, writefd: OwnedFd)
Request to receive the data of a given mime type, writen to writefd
.
The provided file destructor must be a valid FD for writing, and will be closed once the contents are written.
Trait Implementations§
source§impl Clone for PrimarySelectionOffer
impl Clone for PrimarySelectionOffer
source§fn clone(&self) -> PrimarySelectionOffer
fn clone(&self) -> PrimarySelectionOffer
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PrimarySelectionOffer
impl Debug for PrimarySelectionOffer
source§impl PartialEq for PrimarySelectionOffer
impl PartialEq for PrimarySelectionOffer
source§fn eq(&self, other: &PrimarySelectionOffer) -> bool
fn eq(&self, other: &PrimarySelectionOffer) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for PrimarySelectionOffer
impl StructuralPartialEq for PrimarySelectionOffer
Auto Trait Implementations§
impl Freeze for PrimarySelectionOffer
impl !RefUnwindSafe for PrimarySelectionOffer
impl Send for PrimarySelectionOffer
impl Sync for PrimarySelectionOffer
impl Unpin for PrimarySelectionOffer
impl !UnwindSafe for PrimarySelectionOffer
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
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.