[][src]Struct gdnative::api::StreamPeerSSL

pub struct StreamPeerSSL { /* fields omitted */ }

core class StreamPeerSSL 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

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

Constants

impl StreamPeerSSL[src]

pub fn new() -> Ref<StreamPeerSSL, 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 accept_stream(
    &self,
    stream: impl AsArg<StreamPeer>,
    private_key: impl AsArg<CryptoKey>,
    certificate: impl AsArg<X509Certificate>,
    chain: impl AsArg<X509Certificate>
) -> Result<(), GodotError>
[src]

pub fn connect_to_stream(
    &self,
    stream: impl AsArg<StreamPeer>,
    validate_certs: bool,
    for_hostname: impl Into<GodotString>,
    valid_certificate: impl AsArg<X509Certificate>
) -> Result<(), GodotError>
[src]

pub fn disconnect_from_stream(&self)[src]

pub fn get_status(&self) -> Status[src]

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

pub fn poll(&self)[src]

pub fn set_blocking_handshake_enabled(&self, enabled: bool)[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 StreamPeerSSL[src]

impl Deref for StreamPeerSSL[src]

type Target = StreamPeer

The resulting type after dereferencing.

impl DerefMut for StreamPeerSSL[src]

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

impl SubClass<Object> for StreamPeerSSL[src]

impl SubClass<Reference> for StreamPeerSSL[src]

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