Struct solana_rbpf::syscalls::BpfStrCmp [−][src]
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,