MCPcopy Index your code
hub / github.com/cargo-lambda/cargo-lambda / push

Method push

crates/cargo-lambda-watch/src/state.rs:125–132  ·  view source on GitHub ↗
(&self, req: InvokeRequest)

Source from the content-addressed store, hash-verified

123 }
124
125 pub async fn push(&self, req: InvokeRequest) -> Result<(), ServerError> {
126 self.tx
127 .send(req)
128 .await
129 .map_err(|e| ServerError::SendInvokeMessage(Box::new(e)))?;
130 self.depth.fetch_add(1, Ordering::Relaxed);
131 Ok(())
132 }
133
134 pub fn depth(&self) -> usize {
135 self.depth.load(Ordering::Relaxed)

Callers 15

listMethod · 0.80
convert_to_unix_pathFunction · 0.80
runFunction · 0.80
get_zig_versionFunction · 0.80
install_optionsFunction · 0.80
visit_mapMethod · 0.80
visit_seqMethod · 0.80
convert_to_unix_pathFunction · 0.80
parse_certificatesFunction · 0.80
upsertMethod · 0.80

Calls 2

newFunction · 0.85
insertMethod · 0.80

Tested by 5

rootFunction · 0.64
set_global_rootFunction · 0.64
global_root_legacyFunction · 0.64