pub struct AprilConfig {
pub created_at: DateTime<Local>,
pub camera_name: String,
pub camera_width_pixels: usize,
pub camera_height_pixels: usize,
}Fields§
§created_at: DateTime<Local>§camera_name: String§camera_width_pixels: usize§camera_height_pixels: usizeTrait Implementations§
Source§impl Clone for AprilConfig
impl Clone for AprilConfig
Source§fn clone(&self) -> AprilConfig
fn clone(&self) -> AprilConfig
Returns a duplicate 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 Debug for AprilConfig
impl Debug for AprilConfig
Source§impl<'de> Deserialize<'de> for AprilConfig
impl<'de> Deserialize<'de> for AprilConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AprilConfig
impl RefUnwindSafe for AprilConfig
impl Send for AprilConfig
impl Sync for AprilConfig
impl Unpin for AprilConfig
impl UnsafeUnpin for AprilConfig
impl UnwindSafe for AprilConfig
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