Searched refs:Position (Results 1 - 4 of 4) sorted by relevance
/commonlibrary/rust/ylong_json/src/reader/ |
H A D | mod.rs | 40 /// Get the current cursor position and return it as `Position`. 41 fn position(&self) -> Position; in position() 103 /// Position information which expressed in row and column. 105 pub(crate) struct Position { 110 impl Position { impls 111 /// Create a `Position` from the given line and column. 132 use super::Position; 134 /// UT test for `Position::new`. 140 /// 1. Call `Position::new` to create a `Position` [all...] |
H A D | slice_reader.rs | 14 use super::{BytesReader, Cacheable, NBytesReadable, Position, RemainderCountable}; 83 fn position(&self) -> Position { in position() 84 // The traversal method is used to calculate the `Position`, which in position() 88 let mut position = Position { line: 1, column: 1 }; in position()
|
H A D | io_reader.rs | 14 use super::{BytesReader, Cacheable, Position}; 35 pos: Position, 63 pos: Position::new(1, 1), 182 fn position(&self) -> Position { in position()
|
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/mpsc/bounded/ |
H A D | array.rs | 116 Position { array: self }.await 226 struct Position<'a, T> { structure names 230 impl<T> Future for Position<'_, T> {
|
Completed in 3 milliseconds