pub struct AeronArchiveReplayParams { /* private fields */ }
Expand description
Struct containing the available replay parameters.
Implementations§
Source§impl AeronArchiveReplayParams
impl AeronArchiveReplayParams
pub fn new( bounding_limit_counter_id: i32, file_io_max_length: i32, position: i64, length: i64, replay_token: i64, subscription_registration_id: i64, ) -> Result<Self, AeronCError>
Sourcepub fn new_zeroed() -> Result<Self, AeronCError>
pub fn new_zeroed() -> Result<Self, AeronCError>
creates zeroed struct where the underlying c struct is on the heap
pub fn bounding_limit_counter_id(&self) -> i32
pub fn file_io_max_length(&self) -> i32
pub fn position(&self) -> i64
pub fn length(&self) -> i64
pub fn replay_token(&self) -> i64
pub fn subscription_registration_id(&self) -> i64
Sourcepub fn init(&self) -> Result<i32, AeronCError>
pub fn init(&self) -> Result<i32, AeronCError>
Initialize an AeronArchiveReplayParams
with the default values.
pub fn get_inner(&self) -> *mut aeron_archive_replay_params_t
Source§impl AeronArchiveReplayParams
impl AeronArchiveReplayParams
Sourcepub fn clone_struct(&self) -> Self
pub fn clone_struct(&self) -> Self
Regular clone just increases the reference count of underlying count.
clone_struct
shallow copies the content of the underlying struct on heap.
NOTE: if the struct has references to other structs these will not be copied
Must be only used on structs which has no init/clean up methods. So its danagerous to use with Aeron/AeronContext/AeronPublication/AeronSubscription More intended for AeronArchiveRecordingDescriptor
Trait Implementations§
Source§impl Clone for AeronArchiveReplayParams
impl Clone for AeronArchiveReplayParams
Source§fn clone(&self) -> AeronArchiveReplayParams
fn clone(&self) -> AeronArchiveReplayParams
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 Debug for AeronArchiveReplayParams
impl Debug for AeronArchiveReplayParams
Source§impl Default for AeronArchiveReplayParams
impl Default for AeronArchiveReplayParams
This will create an instance where the struct is zeroed, use with care
Source§impl Deref for AeronArchiveReplayParams
impl Deref for AeronArchiveReplayParams
Source§impl From<&AeronArchiveReplayParams> for *mut aeron_archive_replay_params_t
impl From<&AeronArchiveReplayParams> for *mut aeron_archive_replay_params_t
Source§fn from(value: &AeronArchiveReplayParams) -> Self
fn from(value: &AeronArchiveReplayParams) -> Self
Converts to this type from the input type.
Source§impl From<*const aeron_archive_replay_params_stct> for AeronArchiveReplayParams
impl From<*const aeron_archive_replay_params_stct> for AeronArchiveReplayParams
Source§fn from(value: *const aeron_archive_replay_params_t) -> Self
fn from(value: *const aeron_archive_replay_params_t) -> Self
Converts to this type from the input type.
Source§impl From<*mut aeron_archive_replay_params_stct> for AeronArchiveReplayParams
impl From<*mut aeron_archive_replay_params_stct> for AeronArchiveReplayParams
Source§fn from(value: *mut aeron_archive_replay_params_t) -> Self
fn from(value: *mut aeron_archive_replay_params_t) -> Self
Converts to this type from the input type.
Source§impl From<AeronArchiveReplayParams> for *mut aeron_archive_replay_params_t
impl From<AeronArchiveReplayParams> for *mut aeron_archive_replay_params_t
Source§fn from(value: AeronArchiveReplayParams) -> Self
fn from(value: AeronArchiveReplayParams) -> Self
Converts to this type from the input type.
Source§impl From<AeronArchiveReplayParams> for aeron_archive_replay_params_t
impl From<AeronArchiveReplayParams> for aeron_archive_replay_params_t
Source§fn from(value: AeronArchiveReplayParams) -> Self
fn from(value: AeronArchiveReplayParams) -> Self
Converts to this type from the input type.
Source§impl From<aeron_archive_replay_params_stct> for AeronArchiveReplayParams
impl From<aeron_archive_replay_params_stct> for AeronArchiveReplayParams
Source§fn from(value: aeron_archive_replay_params_t) -> Self
fn from(value: aeron_archive_replay_params_t) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AeronArchiveReplayParams
impl !RefUnwindSafe for AeronArchiveReplayParams
impl !Send for AeronArchiveReplayParams
impl !Sync for AeronArchiveReplayParams
impl Unpin for AeronArchiveReplayParams
impl !UnwindSafe for AeronArchiveReplayParams
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