Struct ckb_types::packed::OutPoint [−][src]
pub struct OutPoint(_);
Implementations
impl OutPoint[src]
impl OutPoint[src]pub const TOTAL_SIZE: usize[src]
pub const FIELD_SIZES: [usize; 2][src]
pub const FIELD_COUNT: usize[src]
pub fn tx_hash(&self) -> Byte32[src]
pub fn index(&self) -> Uint32[src]
pub fn as_reader<'r>(&'r self) -> OutPointReader<'r>[src]
impl OutPoint[src]
impl OutPoint[src]pub fn to_cell_key(&self) -> Vec<u8>[src]
pub fn to_cell_key(&self) -> Vec<u8>[src]Generates a binary data to be used as a key for indexing cells in storage.
Notice
The difference between Self::as_slice()
and Self::to_cell_key() is the byteorder of the field index.
-
Uses little endian for the field
indexin serialization.Because in the real world, the little endian machines make up the majority, we can cast it as a number without re-order the bytes.
-
Uses big endian for the field
indexto index cells in storage.So we can use
tx_hashas key prefix to seek the cells from storage in the forward order, so as to traverse cells in the forward order too.
Trait Implementations
impl Entity for OutPoint[src]
impl Entity for OutPoint[src]type Builder = OutPointBuilder
const NAME: &'static str[src]
fn new_unchecked(data: Bytes) -> Self[src]
fn as_bytes(&self) -> Bytes[src]
fn as_slice(&self) -> &[u8][src]
fn from_slice(slice: &[u8]) -> VerificationResult<Self>[src]
fn from_compatible_slice(slice: &[u8]) -> VerificationResult<Self>[src]
fn new_builder() -> Self::Builder[src]
fn as_builder(self) -> Self::Builder[src]
impl<T> PackVec<OutPointVec, OutPoint> for T where
T: IntoIterator<Item = OutPoint>, [src]
impl<T> PackVec<OutPointVec, OutPoint> for T where
T: IntoIterator<Item = OutPoint>, [src]fn pack(self) -> OutPointVec[src]
fn pack(self) -> OutPointVec[src]Packs a vector of binary data into one binary data.
impl Eq for OutPoint[src]
Auto Trait Implementations
impl RefUnwindSafe for OutPoint
impl Send for OutPoint
impl Sync for OutPoint
impl Unpin for OutPoint
impl UnwindSafe for OutPoint
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> PackVec<OutPointVec, OutPoint> for T where
T: IntoIterator<Item = OutPoint>, [src]
impl<T> PackVec<OutPointVec, OutPoint> for T where
T: IntoIterator<Item = OutPoint>, [src]pub fn pack(Self) -> OutPointVec[src]
pub fn pack(Self) -> OutPointVec[src]Packs a vector of binary data into one binary data.
impl<T> PackVec<OutPointVec, OutPoint> for T where
T: IntoIterator<Item = OutPoint>, [src]
impl<T> PackVec<OutPointVec, OutPoint> for T where
T: IntoIterator<Item = OutPoint>, [src]pub fn pack(Self) -> OutPointVec[src]
pub fn pack(Self) -> OutPointVec[src]Packs a vector of binary data into one binary data.
impl<T> PackVec<OutPointVec, OutPoint> for T where
T: IntoIterator<Item = OutPoint>, [src]
impl<T> PackVec<OutPointVec, OutPoint> for T where
T: IntoIterator<Item = OutPoint>, [src]pub fn pack(Self) -> OutPointVec[src]
pub fn pack(Self) -> OutPointVec[src]Packs a vector of binary data into one binary data.
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,