Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ skipped_fields
Method
skipped_fields
crates/derive-impl/src/pystructseq.rs:50–55 ·
view source on GitHub ↗
(&self)
Source
from the content-addressed store, hash-verified
48
}
49
50
fn skipped_fields(&self) -> Vec<&ParsedField> {
51
self.fields
52
.iter()
53
.filter(|f| f.kind == FieldKind::Skipped)
54
.collect()
55
}
56
57
fn n_unnamed_fields(&self) -> usize {
58
self.fields
Callers
1
impl_pystruct_sequence_data
Function · 0.80
Calls
3
collect
Method · 0.80
filter
Method · 0.45
iter
Method · 0.45
Tested by
no test coverage detected