[][src]Struct flv_api_sc::spu::FlvRegisterCustomSpuRequest

pub struct FlvRegisterCustomSpuRequest {
    pub id: i32,
    pub name: String,
    pub public_server: FlvEndPointMetadata,
    pub private_server: FlvEndPointMetadata,
    pub rack: Option<String>,
}

Fields

id: i32

The id of the custom spu (globally unique id)

name: String

The name of the custom spu

public_server: FlvEndPointMetadata

Server host and port number of the public server

private_server: FlvEndPointMetadata

Server host and port number of the private server

rack: Option<String>

Rack name (optional)

Trait Implementations

impl Debug for FlvRegisterCustomSpuRequest[src]

impl Decoder for FlvRegisterCustomSpuRequest[src]

impl Default for FlvRegisterCustomSpuRequest[src]

impl Encoder for FlvRegisterCustomSpuRequest[src]

Auto Trait Implementations

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.