Struct niri_ipc::socket::Socket

source ·
pub struct Socket { /* private fields */ }
Expand description

Helper for blocking communication over the niri socket.

This struct is used to communicate with the niri IPC server. It handles the socket connection and serialization/deserialization of messages.

Implementations§

source§

impl Socket

source

pub fn connect() -> Result<Self>

Connects to the default niri IPC socket.

This is equivalent to calling Self::connect_to with the path taken from the SOCKET_PATH_ENV environment variable.

source

pub fn connect_to(path: impl AsRef<Path>) -> Result<Self>

Connects to the niri IPC socket at the given path.

source

pub fn send( self, request: Request, ) -> Result<(Reply, impl FnMut() -> Result<Event>)>

Sends a request to niri and returns the response.

Return values:

  • Ok(Ok(response)): successful Response from niri
  • Ok(Err(message)): error message from niri
  • Err(error): error communicating with niri

This method also returns a blocking function that you can call to keep reading Events after requesting an EventStream. This function is not useful otherwise.

Auto Trait Implementations§

§

impl Freeze for Socket

§

impl RefUnwindSafe for Socket

§

impl Send for Socket

§

impl Sync for Socket

§

impl Unpin for Socket

§

impl UnwindSafe for Socket

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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, 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.