Enum medea_control_api_proto::control::Request
source · pub enum Request {
Room {
id: Id,
spec: Spec,
},
Member {
id: Id,
room_id: Id,
spec: Box<Spec>,
},
Endpoint {
id: Id,
room_id: Id,
member_id: Id,
spec: Spec,
},
}Expand description
Request for creating or applying an Element on a media server.
Variants§
Room
Room to be created or to apply changes to.
Member
Fields
Member to be created or to apply changes to.
Endpoint
Fields
Endpoint to be created or to apply changes to.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Request
impl Send for Request
impl Sync for Request
impl Unpin for Request
impl UnwindSafe for Request
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more