Enum tlpt::RemoteMode
source · [−]pub enum RemoteMode {
SyncEverything,
ProvideWhatRemoteWants,
}Variants
SyncEverything
ProvideWhatRemoteWants
Trait Implementations
sourceimpl Clone for RemoteMode
impl Clone for RemoteMode
sourcefn clone(&self) -> RemoteMode
fn clone(&self) -> RemoteMode
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl PartialEq<RemoteMode> for RemoteMode
impl PartialEq<RemoteMode> for RemoteMode
sourcefn eq(&self, other: &RemoteMode) -> bool
fn eq(&self, other: &RemoteMode) -> bool
impl Copy for RemoteMode
impl Eq for RemoteMode
impl StructuralEq for RemoteMode
impl StructuralPartialEq for RemoteMode
Auto Trait Implementations
impl RefUnwindSafe for RemoteMode
impl Send for RemoteMode
impl Sync for RemoteMode
impl Unpin for RemoteMode
impl UnwindSafe for RemoteMode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
fn cast_trunc(self) -> T
fn cast_trunc(self) -> T
Cast to integer, truncating Read more
fn cast_nearest(self) -> T
fn cast_nearest(self) -> T
Cast to the nearest integer Read more
fn cast_floor(self) -> T
fn cast_floor(self) -> T
Cast the floor to an integer Read more
fn try_cast_trunc(self) -> Result<T, Error>
fn try_cast_trunc(self) -> Result<T, Error>
Try converting to integer with truncation Read more
fn try_cast_nearest(self) -> Result<T, Error>
fn try_cast_nearest(self) -> Result<T, Error>
Try converting to the nearest integer Read more
fn try_cast_floor(self) -> Result<T, Error>
fn try_cast_floor(self) -> Result<T, Error>
Try converting the floor to an integer Read more
fn try_cast_ceil(self) -> Result<T, Error>
fn try_cast_ceil(self) -> Result<T, Error>
Try convert the ceiling to an integer Read more