[][src]Struct flv_api_sc::spu::FlvFetchSpu

pub struct FlvFetchSpu {
    pub id: i32,
    pub spu_type: FlvSpuType,
    pub public_ep: FlvEndPointMetadata,
    pub private_ep: FlvEndPointMetadata,
    pub rack: Option<String>,
    pub resolution: FlvSpuResolution,
}

Fields

id: i32

Spu globally unique id.

spu_type: FlvSpuType

Spu type: true for managed, false for custom.

public_ep: FlvEndPointMetadata

Public endpoint server interface.

private_ep: FlvEndPointMetadata

Private endpoint server interface.

rack: Option<String>

Rack label, optional parameter used by replica assignment algorithm.

resolution: FlvSpuResolution

Status resolution

Trait Implementations

impl Debug for FlvFetchSpu[src]

impl Decoder for FlvFetchSpu[src]

impl Default for FlvFetchSpu[src]

impl Encoder for FlvFetchSpu[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.