Trait Service

Source
pub trait Service {
    const SERVICE_NAME: &'static str;
    const MEMBER_NAMES: &'static [&'static str];
}
Expand description

A FIDL service.

Required Associated Constants§

Source

const SERVICE_NAME: &'static str

The name of this service.

Source

const MEMBER_NAMES: &'static [&'static str]

The members of this service.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§