[][src]Struct gdnative::api::StreamPeer

pub struct StreamPeer { /* fields omitted */ }

core class StreamPeer inherits Reference (reference counted).

Official documentation

See the documentation of this class in the Godot engine's official documentation.

Memory management

The lifetime of this object is automatically managed through reference counting.

Class hierarchy

StreamPeer inherits methods from:

Safety

All types in the Godot API have "interior mutability" in Rust parlance. To enforce that the official thread-safety guidelines are followed, the typestate pattern is used in the Ref and TRef smart pointers, and the Instance API. The typestate Access in these types tracks whether the access is unique, shared, or exclusive to the current thread. For more information, see the type-level documentation on Ref.

Implementations

impl StreamPeer[src]

pub fn get_16(&self) -> i64[src]

pub fn get_32(&self) -> i64[src]

pub fn get_64(&self) -> i64[src]

pub fn get_8(&self) -> i64[src]

pub fn get_available_bytes(&self) -> i64[src]

pub fn get_data(&self, bytes: i64) -> VariantArray<Shared>[src]

pub fn get_double(&self) -> f64[src]

pub fn get_float(&self) -> f64[src]

pub fn get_partial_data(&self, bytes: i64) -> VariantArray<Shared>[src]

pub fn get_string(&self, bytes: i64) -> GodotString[src]

pub fn get_u16(&self) -> i64[src]

pub fn get_u32(&self) -> i64[src]

pub fn get_u64(&self) -> i64[src]

pub fn get_u8(&self) -> i64[src]

pub fn get_utf8_string(&self, bytes: i64) -> GodotString[src]

pub fn get_var(&self, allow_objects: bool) -> Variant[src]

pub fn is_big_endian_enabled(&self) -> bool[src]

pub fn put_16(&self, value: i64)[src]

pub fn put_32(&self, value: i64)[src]

pub fn put_64(&self, value: i64)[src]

pub fn put_8(&self, value: i64)[src]

pub fn put_data(&self, data: TypedArray<u8>) -> Result<(), GodotError>[src]

pub fn put_double(&self, value: f64)[src]

pub fn put_float(&self, value: f64)[src]

pub fn put_partial_data(&self, data: TypedArray<u8>) -> VariantArray<Shared>[src]

pub fn put_string(&self, value: impl Into<GodotString>)[src]

pub fn put_u16(&self, value: i64)[src]

pub fn put_u32(&self, value: i64)[src]

pub fn put_u64(&self, value: i64)[src]

pub fn put_u8(&self, value: i64)[src]

pub fn put_utf8_string(&self, value: impl Into<GodotString>)[src]

pub fn put_var(&self, value: impl OwnedToVariant, full_objects: bool)[src]

pub fn set_big_endian(&self, enable: bool)[src]

Methods from Deref<Target = Reference>

pub fn init_ref(&self) -> bool[src]

Trait Implementations

impl Debug for StreamPeer[src]

impl Deref for StreamPeer[src]

type Target = Reference

The resulting type after dereferencing.

impl DerefMut for StreamPeer[src]

impl GodotObject for StreamPeer[src]

type RefKind = RefCounted

The memory management kind of this type. This modifies the behavior of the Ref smart pointer. See its type-level documentation for more information. Read more

impl SubClass<Object> for StreamPeer[src]

impl SubClass<Reference> for StreamPeer[src]

impl SubClass<StreamPeer> for StreamPeerBuffer[src]

impl SubClass<StreamPeer> for StreamPeerGDNative[src]

impl SubClass<StreamPeer> for StreamPeerSSL[src]

impl SubClass<StreamPeer> for StreamPeerTCP[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> SubClass<T> for T where
    T: GodotObject
[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.