#[repr(C)]
pub struct CxxAOFlagger { /* private fields */ }
Expand description

CXX Wrapper for aoflagger::AOFlagger, the main class for access to the flagger functionality.

Please see the aoflagger documentation for more details.

Implementations

Get the AOFlagger library version number separated in major, minor and subminor fields.

Examples
use aoflagger_sys::cxx_aoflagger_new;
use std::os::raw::c_short;

let mut major: c_short = -1;
let mut minor: c_short = -1;
let mut sub_minor: c_short = -1;
let aoflagger = unsafe { cxx_aoflagger_new() };
aoflagger.GetVersion(&mut major, &mut minor, &mut sub_minor);
assert!(major >= 3);
assert!(minor >= 0);
assert!(sub_minor >= 0);

Create a new CxxImageSet with specified dimensions and initial value.

Undefined Behavior

TODO: what if widthCapacity < width?

Create a new CxxFlagMask with specified dimensions and initial value.

Find a Lua strategy filename for a Generic telescope.

Find a Lua strategy filename for the MWA telescope.

Load a strategy from disk.

Trait Implementations

type Id

A type-level representation of the type’s C++ namespace and type name. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.