Struct _CapeUUID

Source
#[repr(C)]
pub struct _CapeUUID { pub data: [u8; 16], }

Fields§

§data: [u8; 16]

Implementations§

Source§

impl _CapeUUID

Source

pub fn new() -> Self

#Create a new CapeUUID

Creates a new CapeUUID, and generates unique content

§Examples
use cobia;
cobia::cape_open_initialize().unwrap();
let uuid=cobia::CapeUUID::new();
Source

pub const fn null() -> Self

#Create a null CapeUUID

Creates a null CapeUUID

§Examples
use cobia;
cobia::cape_open_initialize().unwrap();
let uuid=cobia::CapeUUID::null();
let uuid_1=cobia::CapeUUID::from_string("{00000000-0000-0000-0000-000000000000}").unwrap();
assert_eq!(uuid_1,uuid);
Source

pub const fn from_slice(slice: &[u8; 16]) -> Self

#Create a CapeUUID from character slice

Creates a new CapeUUID from a character slice

§Arguments
  • slice - A character slice to be converted to a CapeUUID
§Examples
use cobia;
cobia::cape_open_initialize().unwrap();
let uuid=cobia::CapeUUID::from_slice(&[0x12u8,0x34,0x56,0x78,0x9a,0xbc,0xde,0xf0,0x12,0x34,0x56,0x78,0x90,0xab,0xcd,0xef]);
let uuid_1=cobia::CapeUUID::from_string("{12345678-9abc-def0-1234-567890abcdef}").unwrap();
assert_eq!(uuid_1,uuid);
Source

pub fn from_string(s: &str) -> Result<Self, COBIAError>

#Create a new CapeUUID from a string

Creates a new CapeUUID from a string

§Arguments
  • s - A string slice to be converted to a CapeUUID
§Examples
use cobia;
cobia::cape_open_initialize().unwrap();
let uuid_1=cobia::CapeUUID::from_string("{12345678-9abc-def0-1234-567890abcdef}").unwrap();
let uuid_2=cobia::CapeUUID::from_string("{12345678-9ABC-DEF0-1234-567890ABCDEF}").unwrap();
assert_eq!(uuid_1,uuid_2);
Source

pub fn as_string(&self) -> String

#Create a string from a CapeUUID

Creates a string from a CapeUUID

§Examples
use cobia;
cobia::cape_open_initialize().unwrap();
let uuid=cobia::CapeUUID::from_string("{12345678-9ABC-DEF0-1234-567890ABCDEF}").unwrap();
let s=uuid.as_string();
assert_eq!(&s,"{12345678-9abc-def0-1234-567890abcdef}");
Source

pub fn compare(&self, other: &Self) -> i32

#Compare two CapeUUIDs

Compares two CapeUUIDs

§Arguments
  • other - The other CapeUUID to compare to
§Returns
  • -1 if self is less than other
  • 0 if self is equal to other
  • 1 if self is greater than other
§Examples
use cobia;
cobia::cape_open_initialize().unwrap();
let uuid_1=cobia::CapeUUID::from_string("{12345678-9abc-def0-1234-567890abcdee}").unwrap();
let uuid_2=cobia::CapeUUID::from_string("{12345678-9abc-def0-1234-567890abcdef}").unwrap();
assert_eq!(uuid_1.compare(&uuid_2),-1);
assert_eq!(uuid_2.compare(&uuid_1),1);
assert_eq!(uuid_2.compare(&uuid_2),0);

Trait Implementations§

Source§

impl Clone for _CapeUUID

Source§

fn clone(&self) -> _CapeUUID

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for _CapeUUID

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for _CapeUUID

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.