pub struct ChannelInfo {
pub dimension: u8,
pub format: u8,
pub offset: u8,
pub stream: u8,
}
Expand description
ChannelInfo is a sub class of the Unity engine since version 4.0.0. Exert from Unity’s scripting documentation: A structure that contains the connection information of a Channel in ChannelService.
Fields§
§dimension: u8
§format: u8
§offset: u8
§stream: u8
Trait Implementations§
Source§impl Debug for ChannelInfo
impl Debug for ChannelInfo
Source§impl<'de> Deserialize<'de> for ChannelInfo
impl<'de> Deserialize<'de> for ChannelInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ChannelInfo
impl RefUnwindSafe for ChannelInfo
impl Send for ChannelInfo
impl Sync for ChannelInfo
impl Unpin for ChannelInfo
impl UnwindSafe for ChannelInfo
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