Skip to main content

Ecr17Config

Struct Ecr17Config 

Source
pub struct Ecr17Config {
Show 14 fields pub host: String, pub port: Option<u16>, pub terminal_id: String, pub cash_register_id: String, pub lrc_mode: Option<LrcMode>, pub keep_alive: Option<bool>, pub auto_reconnect: Option<bool>, pub connection_timeout_ms: Option<u32>, pub response_timeout_ms: Option<u32>, pub ack_timeout_ms: Option<u32>, pub receipt_drain_ms: Option<u32>, pub retry_count: Option<u32>, pub retry_delay_ms: Option<u32>, pub debug: Option<bool>,
}
Expand description

Client/session configuration.

Fields§

§host: String

POS terminal host (IP address).

§port: Option<u16>

TCP port (terminal default when omitted).

§terminal_id: String

Terminal identifier (max 8 chars).

§cash_register_id: String

Cash-register identifier (max 8 chars).

§lrc_mode: Option<LrcMode>

LRC framing mode.

§keep_alive: Option<bool>

Keep the socket open between transactions.

§auto_reconnect: Option<bool>

Reconnect automatically on a mid-session drop (financial ops are still never blindly replayed — recover via send_last_result).

§connection_timeout_ms: Option<u32>

Connection timeout (ms).

§response_timeout_ms: Option<u32>

Application-response timeout (ms).

§ack_timeout_ms: Option<u32>

ACK timeout (ms).

§receipt_drain_ms: Option<u32>

After a transaction result, keep forwarding S receipt lines until this many ms of silence. 0/None = off. Set when ECR-printing is on.

§retry_count: Option<u32>

Retransmission attempts on ACK timeout / NAK.

§retry_delay_ms: Option<u32>

Delay between retransmissions (ms).

§debug: Option<bool>

Verbose debug logging.

Trait Implementations§

Source§

impl Clone for Ecr17Config

Source§

fn clone(&self) -> Ecr17Config

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Ecr17Config

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Ecr17Config

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Eq for Ecr17Config

Source§

impl PartialEq for Ecr17Config

Source§

fn eq(&self, other: &Ecr17Config) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for Ecr17Config

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for Ecr17Config

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.