pub struct LocalizationServiceSyncClient<IP, OP>where
IP: TInputProtocol,
OP: TOutputProtocol,{ /* private fields */ }Implementations§
Source§impl<IP, OP> LocalizationServiceSyncClient<IP, OP>where
IP: TInputProtocol,
OP: TOutputProtocol,
impl<IP, OP> LocalizationServiceSyncClient<IP, OP>where
IP: TInputProtocol,
OP: TOutputProtocol,
pub fn new( input_protocol: IP, output_protocol: OP, ) -> LocalizationServiceSyncClient<IP, OP>
Trait Implementations§
Source§impl<IP, OP> TThriftClient for LocalizationServiceSyncClient<IP, OP>where
IP: TInputProtocol,
OP: TOutputProtocol,
impl<IP, OP> TThriftClient for LocalizationServiceSyncClient<IP, OP>where
IP: TInputProtocol,
OP: TOutputProtocol,
Source§fn i_prot_mut(&mut self) -> &mut dyn TInputProtocol
fn i_prot_mut(&mut self) -> &mut dyn TInputProtocol
Returns the input protocol used to read serialized Thrift messages
from the Thrift server.
Source§fn o_prot_mut(&mut self) -> &mut dyn TOutputProtocol
fn o_prot_mut(&mut self) -> &mut dyn TOutputProtocol
Returns the output protocol used to write serialized Thrift messages
to the Thrift server.
Source§fn sequence_number(&self) -> i32
fn sequence_number(&self) -> i32
Returns the sequence number of the last message written to the Thrift
server. Returns
0 if no messages have been written. Sequence
numbers should never be negative, and this method returns an i32
simply because the Thrift protocol encodes sequence numbers as i32 on
the wire.Source§fn increment_sequence_number(&mut self) -> i32
fn increment_sequence_number(&mut self) -> i32
Increments the sequence number, indicating that a message with that
number has been sent to the Thrift server.
impl<IP, OP> TLocalizationServiceSyncClientMarker for LocalizationServiceSyncClient<IP, OP>where
IP: TInputProtocol,
OP: TOutputProtocol,
Auto Trait Implementations§
impl<IP, OP> Freeze for LocalizationServiceSyncClient<IP, OP>
impl<IP, OP> RefUnwindSafe for LocalizationServiceSyncClient<IP, OP>where
IP: RefUnwindSafe,
OP: RefUnwindSafe,
impl<IP, OP> Send for LocalizationServiceSyncClient<IP, OP>
impl<IP, OP> Sync for LocalizationServiceSyncClient<IP, OP>
impl<IP, OP> Unpin for LocalizationServiceSyncClient<IP, OP>
impl<IP, OP> UnwindSafe for LocalizationServiceSyncClient<IP, OP>where
IP: UnwindSafe,
OP: UnwindSafe,
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<C> TLocalizationServiceSyncClient for Cwhere
C: TThriftClient + TLocalizationServiceSyncClientMarker,
impl<C> TLocalizationServiceSyncClient for Cwhere
C: TThriftClient + TLocalizationServiceSyncClientMarker,
Source§fn switch_language(
&mut self,
language: String,
load_all_context: bool,
remove_old: bool,
) -> Result<bool, Error>
fn switch_language( &mut self, language: String, load_all_context: bool, remove_old: bool, ) -> Result<bool, Error>
Switch language to specified one.
Source§fn switch_context(
&mut self,
context: String,
language: String,
) -> Result<bool, Error>
fn switch_context( &mut self, context: String, language: String, ) -> Result<bool, Error>
Switch a context of the language.
Source§fn get_string(
&mut self,
key: String,
context: String,
language: String,
) -> Result<String, Error>
fn get_string( &mut self, key: String, context: String, language: String, ) -> Result<String, Error>
Get a localization string.
Return: localization string.