[][src]Struct fe_osi::ipc::Publisher

pub struct Publisher {
    pub topic: CString,
}

A data structure that allows tasks to publish messages to an IPC topic

Fields

topic: CString

Implementations

impl Publisher[src]

pub fn new(topic: &str) -> Result<Self, &'static str>[src]

Creates a new Publisher for the specified topic

#Examples

let my_publisher = Publisher::new("my topic").unwrap();

pub fn publish(&mut self, message: Vec<u8>) -> Result<(), &'static str>[src]

Publishes a message to the topic.

#Examples

my_publisher.publish("Hello, World!".into_bytes());

Auto Trait Implementations

impl Send for Publisher

impl Sync for Publisher

impl Unpin for Publisher

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.