pub struct LineStringArray(/* private fields */);
Implementations§
Source§impl LineStringArray
impl LineStringArray
pub fn affine_transform( &self, transform: BroadcastableAffine, ) -> WasmResult<GeometryArray>
pub fn area(&self) -> WasmResult<FloatArray>
pub fn center(&self) -> WasmResult<PointArray>
pub fn centroid(&self) -> WasmResult<PointArray>
pub fn convex_hull(&self) -> WasmResult<PolygonArray>
pub fn euclidean_length(&self) -> WasmResult<FloatArray>
pub fn geodesic_area(&self) -> WasmResult<FloatArray>
pub fn geodesic_area_signed(&self) -> WasmResult<FloatArray>
pub fn geodesic_length(&self) -> WasmResult<FloatArray>
pub fn haversine_length(&self) -> WasmResult<FloatArray>
pub fn is_empty(&self) -> WasmResult<BooleanArray>
pub fn rotate( &self, angle: BroadcastableFloat, origin: TransformOrigin, ) -> WasmResult<GeometryArray>
pub fn scale( &self, xfact: BroadcastableFloat, yfact: BroadcastableFloat, origin: TransformOrigin, ) -> WasmResult<GeometryArray>
pub fn signed_area(&self) -> WasmResult<FloatArray>
pub fn skew( &self, x_degrees: BroadcastableFloat, y_degrees: BroadcastableFloat, origin: TransformOrigin, ) -> WasmResult<GeometryArray>
pub fn to_ffi(&self) -> FFIArrowArray
pub fn translate( &self, x_offset: BroadcastableFloat, y_offset: BroadcastableFloat, ) -> WasmResult<GeometryArray>
pub fn vincenty_length(&self) -> WasmResult<FloatArray>
Source§impl LineStringArray
impl LineStringArray
pub fn new( coords: CoordBuffer, geom_offsets: Vec<i32>, validity: Option<BooleanArray>, ) -> Self
Trait Implementations§
Source§impl From<&LineStringArray> for GeometryArray
impl From<&LineStringArray> for GeometryArray
Source§fn from(value: &LineStringArray) -> Self
fn from(value: &LineStringArray) -> Self
Converts to this type from the input type.
Source§impl From<LineStringArray> for JsValue
impl From<LineStringArray> for JsValue
Source§fn from(value: LineStringArray) -> Self
fn from(value: LineStringArray) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for LineStringArray
impl FromWasmAbi for LineStringArray
Source§impl IntoWasmAbi for LineStringArray
impl IntoWasmAbi for LineStringArray
Source§impl LongRefFromWasmAbi for LineStringArray
impl LongRefFromWasmAbi for LineStringArray
Source§impl OptionFromWasmAbi for LineStringArray
impl OptionFromWasmAbi for LineStringArray
Source§impl OptionIntoWasmAbi for LineStringArray
impl OptionIntoWasmAbi for LineStringArray
Source§impl RefFromWasmAbi for LineStringArray
impl RefFromWasmAbi for LineStringArray
Source§type Anchor = RcRef<LineStringArray>
type Anchor = RcRef<LineStringArray>
The type that holds the reference to
Self
for the duration of the
invocation of the function that has an &Self
parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl RefMutFromWasmAbi for LineStringArray
impl RefMutFromWasmAbi for LineStringArray
Source§impl TryFromJsValue for LineStringArray
impl TryFromJsValue for LineStringArray
Source§impl VectorFromWasmAbi for LineStringArray
impl VectorFromWasmAbi for LineStringArray
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[LineStringArray]>
Source§impl VectorIntoJsValue for LineStringArray
impl VectorIntoJsValue for LineStringArray
fn vector_into_jsvalue(vector: Box<[LineStringArray]>) -> JsValue
Source§impl VectorIntoWasmAbi for LineStringArray
impl VectorIntoWasmAbi for LineStringArray
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[LineStringArray]>) -> Self::Abi
Source§impl WasmDescribeVector for LineStringArray
impl WasmDescribeVector for LineStringArray
impl SupportsConstructor for LineStringArray
impl SupportsInstanceProperty for LineStringArray
impl SupportsStaticProperty for LineStringArray
Auto Trait Implementations§
impl Freeze for LineStringArray
impl RefUnwindSafe for LineStringArray
impl Send for LineStringArray
impl Sync for LineStringArray
impl Unpin for LineStringArray
impl UnwindSafe for LineStringArray
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
Source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.