pub struct OpenResponse<'i> {
pub codepage: Option<OctetStr<'i>>,
pub client_id: Option<OctetStr<'i>>,
pub req_file_id: OctetStr<'i>,
pub server_id: OctetStr<'i>,
pub ref_time: Option<Time>,
pub sml_version: Option<u8>,
}
Expand description
SML_PublicOpen.Res
message
Fields§
§codepage: Option<OctetStr<'i>>
alternative codepage. Defaults to ISO 8859-15
client_id: Option<OctetStr<'i>>
identification of the client
req_file_id: OctetStr<'i>
identification of the request/response pair
server_id: OctetStr<'i>
identification of the server
ref_time: Option<Time>
reference time
sml_version: Option<u8>
version of the SML protocol. Defaults to 1
Trait Implementations§
Source§impl<'i> Clone for OpenResponse<'i>
impl<'i> Clone for OpenResponse<'i>
Source§fn clone(&self) -> OpenResponse<'i>
fn clone(&self) -> OpenResponse<'i>
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<'i> Debug for OpenResponse<'i>
impl<'i> Debug for OpenResponse<'i>
Source§impl<'i> PartialEq for OpenResponse<'i>
impl<'i> PartialEq for OpenResponse<'i>
impl<'i> Eq for OpenResponse<'i>
impl<'i> StructuralPartialEq for OpenResponse<'i>
Auto Trait Implementations§
impl<'i> Freeze for OpenResponse<'i>
impl<'i> RefUnwindSafe for OpenResponse<'i>
impl<'i> Send for OpenResponse<'i>
impl<'i> Sync for OpenResponse<'i>
impl<'i> Unpin for OpenResponse<'i>
impl<'i> UnwindSafe for OpenResponse<'i>
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