Struct proj_sys::PROJ_CELESTIAL_BODY_INFO
source · #[repr(C)]pub struct PROJ_CELESTIAL_BODY_INFO {
pub auth_name: *mut c_char,
pub name: *mut c_char,
}
Expand description
\brief Structure given description of a celestial body.
This structure may grow over time, and should not be directly allocated by client code. @since 8.1
Fields§
§auth_name: *mut c_char
Authority name.
name: *mut c_char
Object name. For example “Earth”
Trait Implementations§
source§impl Clone for PROJ_CELESTIAL_BODY_INFO
impl Clone for PROJ_CELESTIAL_BODY_INFO
source§fn clone(&self) -> PROJ_CELESTIAL_BODY_INFO
fn clone(&self) -> PROJ_CELESTIAL_BODY_INFO
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 Debug for PROJ_CELESTIAL_BODY_INFO
impl Debug for PROJ_CELESTIAL_BODY_INFO
impl Copy for PROJ_CELESTIAL_BODY_INFO
Auto Trait Implementations§
impl RefUnwindSafe for PROJ_CELESTIAL_BODY_INFO
impl !Send for PROJ_CELESTIAL_BODY_INFO
impl !Sync for PROJ_CELESTIAL_BODY_INFO
impl Unpin for PROJ_CELESTIAL_BODY_INFO
impl UnwindSafe for PROJ_CELESTIAL_BODY_INFO
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