pub trait OrgBluezMedia1 {
    fn register_endpoint(
        &self,
        endpoint: Path<'_>,
        properties: PropMap
    ) -> MethodReply<()>; fn unregister_endpoint(&self, endpoint: Path<'_>) -> MethodReply<()>; fn register_player(
        &self,
        player: Path<'_>,
        properties: PropMap
    ) -> MethodReply<()>; fn unregister_player(&self, player: Path<'_>) -> MethodReply<()>; fn register_application(
        &self,
        application: Path<'_>,
        options: PropMap
    ) -> MethodReply<()>; fn unregister_application(&self, application: Path<'_>) -> MethodReply<()>; fn supported_uuids(&self) -> MethodReply<Vec<String>>; }

Required Methods§

Implementations on Foreign Types§

Implementors§