pub trait PlaceMut: ObjectMut {
// Required methods
fn set_accuracy(self, val: Option<f64>) -> Self;
fn set_altitude(self, val: Option<f64>) -> Self;
fn set_latitude(self, val: Option<f64>) -> Self;
fn set_longitude(self, val: Option<f64>) -> Self;
fn set_radius(self, val: Option<f64>) -> Self;
fn set_units(self, val: Option<&str>) -> Self;
}Required Methods§
fn set_accuracy(self, val: Option<f64>) -> Self
fn set_altitude(self, val: Option<f64>) -> Self
fn set_latitude(self, val: Option<f64>) -> Self
fn set_longitude(self, val: Option<f64>) -> Self
fn set_radius(self, val: Option<f64>) -> Self
fn set_units(self, val: Option<&str>) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.