[][src]Struct gdnative::api::StreamPeerBuffer

pub struct StreamPeerBuffer { /* fields omitted */ }

core class StreamPeerBuffer inherits StreamPeer (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

StreamPeerBuffer 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 StreamPeerBuffer[src]

pub fn new() -> Ref<StreamPeerBuffer, Unique>[src]

Creates a new instance of this object.

This is a reference-counted type. The returned object is automatically managed by Ref.

pub fn clear(&self)[src]

pub fn duplicate(&self) -> Option<Ref<StreamPeerBuffer, Shared>>[src]

pub fn data_array(&self) -> TypedArray<u8>[src]

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

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

pub fn resize(&self, size: i64)[src]

pub fn seek(&self, position: i64)[src]

pub fn set_data_array(&self, data: TypedArray<u8>)[src]

Methods from Deref<Target = StreamPeer>

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]

Trait Implementations

impl Debug for StreamPeerBuffer[src]

impl Deref for StreamPeerBuffer[src]

type Target = StreamPeer

The resulting type after dereferencing.

impl DerefMut for StreamPeerBuffer[src]

impl GodotObject for StreamPeerBuffer[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 Instanciable for StreamPeerBuffer[src]

impl SubClass<Object> for StreamPeerBuffer[src]

impl SubClass<Reference> for StreamPeerBuffer[src]

impl SubClass<StreamPeer> for StreamPeerBuffer[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.