Struct sep_sys::sep_catalog[][src]

#[repr(C)]pub struct sep_catalog {
    pub nobj: c_int,
    pub thresh: *mut f32,
    pub npix: *mut c_int,
    pub tnpix: *mut c_int,
    pub xmin: *mut c_int,
    pub xmax: *mut c_int,
    pub ymin: *mut c_int,
    pub ymax: *mut c_int,
    pub x: *mut f64,
    pub y: *mut f64,
    pub x2: *mut f64,
    pub y2: *mut f64,
    pub xy: *mut f64,
    pub errx2: *mut f64,
    pub erry2: *mut f64,
    pub errxy: *mut f64,
    pub a: *mut f32,
    pub b: *mut f32,
    pub theta: *mut f32,
    pub cxx: *mut f32,
    pub cyy: *mut f32,
    pub cxy: *mut f32,
    pub cflux: *mut f32,
    pub flux: *mut f32,
    pub cpeak: *mut f32,
    pub peak: *mut f32,
    pub xcpeak: *mut c_int,
    pub ycpeak: *mut c_int,
    pub xpeak: *mut c_int,
    pub ypeak: *mut c_int,
    pub flag: *mut c_short,
    pub pix: *mut *mut c_int,
    pub objectspix: *mut c_int,
}

Fields

nobj: c_intthresh: *mut f32npix: *mut c_inttnpix: *mut c_intxmin: *mut c_intxmax: *mut c_intymin: *mut c_intymax: *mut c_intx: *mut f64y: *mut f64x2: *mut f64y2: *mut f64xy: *mut f64errx2: *mut f64erry2: *mut f64errxy: *mut f64a: *mut f32b: *mut f32theta: *mut f32cxx: *mut f32cyy: *mut f32cxy: *mut f32cflux: *mut f32flux: *mut f32cpeak: *mut f32peak: *mut f32xcpeak: *mut c_intycpeak: *mut c_intxpeak: *mut c_intypeak: *mut c_intflag: *mut c_shortpix: *mut *mut c_intobjectspix: *mut c_int

Trait Implementations

impl Clone for sep_catalog[src]

impl Copy for sep_catalog[src]

impl Debug for sep_catalog[src]

impl Default for sep_catalog[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.