Struct solana_rbpf::syscalls::BpfStrCmp[][src]

pub struct BpfStrCmp {}

C-like strcmp, return 0 if the strings are equal, and a non-null value otherwise.

Examples

use solana_rbpf::syscalls::{BpfStrCmp, Result};
use solana_rbpf::memory_region::{MemoryRegion, MemoryMapping};
use solana_rbpf::vm::{Config, SyscallObject};

let foo = "This is a string.";
let bar = "This is another sting.";
let va_foo = 0x1000;
let va_bar = 0x2000;
let mut result: Result = Ok(0);
let memory_mapping = [MemoryRegion::new_from_slice(foo.as_bytes(), va_foo, 0, false)];
BpfStrCmp::call(&mut BpfStrCmp {}, va_foo, va_foo, 0, 0, 0, &MemoryMapping::new(memory_mapping.to_vec(), &Config::default()), &mut result);
assert!(result.unwrap() == 0);
let mut result: Result = Ok(0);
let memory_mapping = [MemoryRegion::new_from_slice(foo.as_bytes(), va_foo, 0, false), MemoryRegion::new_from_slice(bar.as_bytes(), va_bar, 0, false)];
BpfStrCmp::call(&mut BpfStrCmp {}, va_foo, va_bar, 0, 0, 0, &MemoryMapping::new(memory_mapping.to_vec(), &Config::default()), &mut result);
assert!(result.unwrap() != 0);

Trait Implementations

impl SyscallObject<UserError> for BpfStrCmp[src]

Auto Trait Implementations

impl RefUnwindSafe for BpfStrCmp

impl Send for BpfStrCmp

impl Sync for BpfStrCmp

impl Unpin for BpfStrCmp

impl UnwindSafe for BpfStrCmp

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, 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]