Docs.rs
ferrum_compiler-0.0.4
ferrum_compiler 0.0.4
Permalink
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
adam-bates
Dependencies
anyhow ^1.0.71
normal
env_logger ^0.10.0
normal
optional
lazy_static ^1.4.0
normal
log ^0.4.20
normal
thiserror ^1.0.41
normal
Versions
0%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
ferrum_
compiler
0.0.4
String
Utils
Required Methods
char_at
Implementors
In ferrum_
compiler::
utils
ferrum_compiler
::
utils
Trait
StringUtils
Copy item path
Source
pub trait StringUtils { // Required method fn
char_at
(&self, index:
usize
) ->
Option
<
char
>; }
Required Methods
§
Source
fn
char_at
(&self, index:
usize
) ->
Option
<
char
>
Implementors
§
Source
§
impl<T:
Deref
<Target =
str
>>
StringUtils
for T