fidl_fuchsia_logger

Trait LogSinkProxyInterface

Source
pub trait LogSinkProxyInterface: Send + Sync {
    type WaitForInterestChangeResponseFut: Future<Output = Result<LogSinkWaitForInterestChangeResult, Error>> + Send;

    // Required methods
    fn connect(&self, socket: Socket) -> Result<(), Error>;
    fn wait_for_interest_change(&self) -> Self::WaitForInterestChangeResponseFut;
    fn connect_structured(&self, socket: Socket) -> Result<(), Error>;
}

Required Associated Types§

Required Methods§

Source

fn connect(&self, socket: Socket) -> Result<(), Error>

Source

fn wait_for_interest_change(&self) -> Self::WaitForInterestChangeResponseFut

Source

fn connect_structured(&self, socket: Socket) -> Result<(), Error>

Implementors§