pub struct PublishParams {
pub stream_key: String,
pub publish_type: String,
pub stream_id: u32,
}Expand description
Publish command parameters
Fields§
§stream_key: StringStream key (name)
publish_type: StringPublish type: “live”, “record”, “append”
stream_id: u32Message stream ID
Trait Implementations§
Source§impl Clone for PublishParams
impl Clone for PublishParams
Source§fn clone(&self) -> PublishParams
fn clone(&self) -> PublishParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PublishParams
impl RefUnwindSafe for PublishParams
impl Send for PublishParams
impl Sync for PublishParams
impl Unpin for PublishParams
impl UnwindSafe for PublishParams
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