#[repr(C)]pub struct aeron_network_publication_stct {Show 65 fields
pub conductor_fields: aeron_network_publication_stct_aeron_network_publication_conductor_fields_stct,
pub conductor_fields_pad: [u8; 112],
pub mapped_raw_log: aeron_mapped_raw_log_t,
pub pub_pos_position: aeron_position_t,
pub pub_lmt_position: aeron_position_t,
pub snd_pos_position: aeron_position_t,
pub snd_lmt_position: aeron_position_t,
pub snd_bpe_counter: aeron_atomic_counter_t,
pub retransmit_handler: aeron_retransmit_handler_t,
pub log_meta_data: *mut aeron_logbuffer_metadata_t,
pub endpoint: *mut aeron_send_channel_endpoint_t,
pub flow_control: *mut aeron_flow_control_strategy_t,
pub cached_clock: *mut aeron_clock_cache_t,
pub sender_fields_pad_lhs: [u8; 64],
pub has_initial_connection: bool,
pub track_sender_limits: bool,
pub time_of_last_data_or_heartbeat_ns: i64,
pub current_messages_per_send: usize,
pub status_message_deadline_ns: i64,
pub time_of_last_setup_ns: i64,
pub sender_fields_pad_rhs: [u8; 64],
pub endpoint_address: sockaddr_storage,
pub log_file_name: *mut c_char,
pub term_buffer_length: i64,
pub term_window_length: i64,
pub trip_gain: i64,
pub linger_timeout_ns: i64,
pub unblock_timeout_ns: i64,
pub connection_timeout_ns: i64,
pub untethered_window_limit_timeout_ns: i64,
pub untethered_resting_timeout_ns: i64,
pub tag: i64,
pub response_correlation_id: i64,
pub session_id: i32,
pub stream_id: i32,
pub initial_term_id: i32,
pub starting_term_id: i32,
pub term_length_mask: i32,
pub starting_term_offset: usize,
pub log_file_name_length: usize,
pub position_bits_to_shift: usize,
pub mtu_length: usize,
pub max_messages_per_send: usize,
pub spies_simulate_connection: bool,
pub signal_eos: bool,
pub is_setup_elicited: bool,
pub is_exclusive: bool,
pub is_response: bool,
pub has_receivers: bool,
pub has_spies: bool,
pub is_connected: bool,
pub is_end_of_stream: bool,
pub has_sender_released: bool,
pub has_received_unicast_eos: bool,
pub raw_log_close_func: aeron_raw_log_close_func_t,
pub raw_log_free_func: aeron_raw_log_free_func_t,
pub log: aeron_network_publication_stct__bindgen_ty_1,
pub short_sends_counter: *mut i64,
pub heartbeats_sent_counter: *mut i64,
pub sender_flow_control_limits_counter: *mut i64,
pub retransmits_sent_counter: *mut i64,
pub retransmitted_bytes_counter: *mut i64,
pub unblocked_publications_counter: *mut i64,
pub mapped_bytes_counter: *mut i64,
pub receiver_liveness_tracker: aeron_int64_counter_map_t,
}
Fields§
§conductor_fields: aeron_network_publication_stct_aeron_network_publication_conductor_fields_stct
§conductor_fields_pad: [u8; 112]
§mapped_raw_log: aeron_mapped_raw_log_t
§pub_pos_position: aeron_position_t
§pub_lmt_position: aeron_position_t
§snd_pos_position: aeron_position_t
§snd_lmt_position: aeron_position_t
§snd_bpe_counter: aeron_atomic_counter_t
§retransmit_handler: aeron_retransmit_handler_t
§log_meta_data: *mut aeron_logbuffer_metadata_t
§endpoint: *mut aeron_send_channel_endpoint_t
§flow_control: *mut aeron_flow_control_strategy_t
§cached_clock: *mut aeron_clock_cache_t
§sender_fields_pad_lhs: [u8; 64]
§has_initial_connection: bool
§track_sender_limits: bool
§time_of_last_data_or_heartbeat_ns: i64
§current_messages_per_send: usize
§status_message_deadline_ns: i64
§time_of_last_setup_ns: i64
§sender_fields_pad_rhs: [u8; 64]
§endpoint_address: sockaddr_storage
§log_file_name: *mut c_char
§term_buffer_length: i64
§term_window_length: i64
§trip_gain: i64
§linger_timeout_ns: i64
§unblock_timeout_ns: i64
§connection_timeout_ns: i64
§untethered_window_limit_timeout_ns: i64
§untethered_resting_timeout_ns: i64
§tag: i64
§response_correlation_id: i64
§session_id: i32
§stream_id: i32
§initial_term_id: i32
§starting_term_id: i32
§term_length_mask: i32
§starting_term_offset: usize
§log_file_name_length: usize
§position_bits_to_shift: usize
§mtu_length: usize
§max_messages_per_send: usize
§spies_simulate_connection: bool
§signal_eos: bool
§is_setup_elicited: bool
§is_exclusive: bool
§is_response: bool
§has_receivers: bool
§has_spies: bool
§is_connected: bool
§is_end_of_stream: bool
§has_sender_released: bool
§has_received_unicast_eos: bool
§raw_log_close_func: aeron_raw_log_close_func_t
§raw_log_free_func: aeron_raw_log_free_func_t
§log: aeron_network_publication_stct__bindgen_ty_1
§short_sends_counter: *mut i64
§heartbeats_sent_counter: *mut i64
§sender_flow_control_limits_counter: *mut i64
§retransmits_sent_counter: *mut i64
§retransmitted_bytes_counter: *mut i64
§unblocked_publications_counter: *mut i64
§mapped_bytes_counter: *mut i64
§receiver_liveness_tracker: aeron_int64_counter_map_t
Trait Implementations§
source§impl Clone for aeron_network_publication_stct
impl Clone for aeron_network_publication_stct
source§fn clone(&self) -> aeron_network_publication_stct
fn clone(&self) -> aeron_network_publication_stct
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl From<aeron_network_publication_stct> for AeronNetworkPublication
impl From<aeron_network_publication_stct> for AeronNetworkPublication
source§fn from(value: aeron_network_publication_t) -> Self
fn from(value: aeron_network_publication_t) -> Self
Converts to this type from the input type.
impl Copy for aeron_network_publication_stct
Auto Trait Implementations§
impl Freeze for aeron_network_publication_stct
impl RefUnwindSafe for aeron_network_publication_stct
impl !Send for aeron_network_publication_stct
impl !Sync for aeron_network_publication_stct
impl Unpin for aeron_network_publication_stct
impl UnwindSafe for aeron_network_publication_stct
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)