[][src]Struct gdnative::api::PacketPeerUDP

pub struct PacketPeerUDP { /* fields omitted */ }

core class PacketPeerUDP inherits PacketPeer (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

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

pub fn new() -> Ref<PacketPeerUDP, 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 close(&self)[src]

pub fn connect_to_host(
    &self,
    host: impl Into<GodotString>,
    port: i64
) -> Result<(), GodotError>
[src]

pub fn get_packet_ip(&self) -> GodotString[src]

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

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

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

pub fn join_multicast_group(
    &self,
    multicast_address: impl Into<GodotString>,
    interface_name: impl Into<GodotString>
) -> Result<(), GodotError>
[src]

pub fn leave_multicast_group(
    &self,
    multicast_address: impl Into<GodotString>,
    interface_name: impl Into<GodotString>
) -> Result<(), GodotError>
[src]

pub fn listen(
    &self,
    port: i64,
    bind_address: impl Into<GodotString>,
    recv_buf_size: i64
) -> Result<(), GodotError>
[src]

pub fn set_broadcast_enabled(&self, enabled: bool)[src]

pub fn set_dest_address(
    &self,
    host: impl Into<GodotString>,
    port: i64
) -> Result<(), GodotError>
[src]

pub fn wait(&self) -> Result<(), GodotError>[src]

Methods from Deref<Target = PacketPeer>

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

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

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

pub fn get_packet_error(&self) -> Result<(), GodotError>[src]

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

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

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

pub fn put_var(
    &self,
    var: impl OwnedToVariant,
    full_objects: bool
) -> Result<(), GodotError>
[src]

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

pub fn set_encode_buffer_max_size(&self, max_size: i64)[src]

Trait Implementations

impl Debug for PacketPeerUDP[src]

impl Deref for PacketPeerUDP[src]

type Target = PacketPeer

The resulting type after dereferencing.

impl DerefMut for PacketPeerUDP[src]

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

impl SubClass<Object> for PacketPeerUDP[src]

impl SubClass<PacketPeer> for PacketPeerUDP[src]

impl SubClass<Reference> for PacketPeerUDP[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.