Struct ntcore_sys::NT_ConnectionInfo [] [src]

#[repr(C)]
pub struct NT_ConnectionInfo { pub remote_id: NT_String, pub remote_ip: NT_String, pub remote_port: c_uint, pub last_update: u64, pub protocol_version: c_uint, }

NetworkTables Connection Information

Fields

The remote identifier (as set on the remote node by NetworkTableInstance::SetNetworkIdentity() or nt::SetNetworkIdentity()).

The IP address of the remote node.

The port number of the remote node.

The last time any update was received from the remote node (same scale as returned by nt::Now()).

The protocol version being used for this connection. This in protocol layer format, so 0x0200 = 2.0, 0x0300 = 3.0).

Trait Implementations

impl Debug for NT_ConnectionInfo
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for NT_ConnectionInfo
[src]

impl Clone for NT_ConnectionInfo
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations