Struct jlrs::value::string::JuliaString[][src]

#[repr(transparent)]pub struct JuliaString<'frame>(_, _);

A raw Julia string.

Implementations

impl<'frame> JuliaString<'frame>[src]

pub fn len(self) -> usize[src]

Returns the length of the string.

pub fn as_c_str(self) -> &'frame CStr[src]

Returns the string as a CStr.

pub fn as_slice(self) -> &'frame [u8][src]

Returns the string as a slice of bytes without the terminating \0.

pub fn as_str(self) -> JlrsResult<&'frame str>[src]

Returns the string as a string slice, or an error if it the string contains invalid characters

pub unsafe fn as_str_unchecked(self) -> &'frame str[src]

Returns the string as a string slice without checking if the string is properly encoded.

pub fn as_value(self) -> Value<'frame, 'static>[src]

Convert self to a Value.

Trait Implementations

impl<'frame, 'data> Cast<'frame, 'data> for JuliaString<'frame>[src]

type Output = Self

impl<'frame> Clone for JuliaString<'frame>[src]

impl<'frame> Copy for JuliaString<'frame>[src]

impl<'scope> Debug for JuliaString<'scope>[src]

impl<'frame> Into<Value<'frame, 'static>> for JuliaString<'frame>[src]

impl<'frame> JuliaType for JuliaString<'frame>[src]

impl<'frame> JuliaTypecheck for JuliaString<'frame>[src]

impl<'frame> TemporarySymbol for JuliaString<'frame>[src]

impl<'frame> ValidLayout for JuliaString<'frame>[src]

Auto Trait Implementations

impl<'frame> RefUnwindSafe for JuliaString<'frame>

impl<'frame> !Send for JuliaString<'frame>

impl<'frame> !Sync for JuliaString<'frame>

impl<'frame> Unpin for JuliaString<'frame>

impl<'frame> UnwindSafe for JuliaString<'frame>

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.