pub struct FieldPos {
pub start: usize,
pub end: usize,
}Expand description
Define a posição de um campo conforme manuais bancários (CNAB).
§Importante
Manuais de banco utilizam indexação baseada em 1 e inclusiva. Exemplo: “Posição 001 a 003” significa os 3 primeiros caracteres.
Fields§
§start: usizePosição inicial (1-based, inclusivo).
end: usizePosição final (1-based, inclusivo).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FieldPos
impl RefUnwindSafe for FieldPos
impl Send for FieldPos
impl Sync for FieldPos
impl Unpin for FieldPos
impl UnwindSafe for FieldPos
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more