mirror of
https://github.com/github/codeql.git
synced 2026-04-23 07:45:17 +02:00
Merge branch 'main' into tokio
This commit is contained in:
3
.github/workflows/go-tests-other-os.yml
vendored
3
.github/workflows/go-tests-other-os.yml
vendored
@@ -26,9 +26,8 @@ jobs:
|
||||
uses: ./go/actions/test
|
||||
|
||||
test-win:
|
||||
if: github.repository_owner == 'github'
|
||||
name: Test Windows
|
||||
runs-on: windows-latest-xl
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -62,6 +62,7 @@ node_modules/
|
||||
|
||||
# Temporary folders for working with generated models
|
||||
.model-temp
|
||||
/mad-generation-build
|
||||
|
||||
# bazel-built in-tree extractor packs
|
||||
/*/extractor-pack
|
||||
|
||||
@@ -10,6 +10,7 @@ members = [
|
||||
"rust/ast-generator",
|
||||
"rust/autobuild",
|
||||
]
|
||||
exclude = ["mad-generation-build"]
|
||||
|
||||
[patch.crates-io]
|
||||
# patch for build script bug preventing bazel build
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
---
|
||||
category: fix
|
||||
---
|
||||
* Fixed a problem where `asExpr()` on `DataFlow::Node` would never return `ArrayAggregateLiteral`s.
|
||||
@@ -0,0 +1,9 @@
|
||||
---
|
||||
category: breaking
|
||||
---
|
||||
* Deleted the deprecated `userInputArgument` predicate and its convenience accessor from the `Security.qll`.
|
||||
* Deleted the deprecated `userInputReturned` predicate and its convenience accessor from the `Security.qll`.
|
||||
* Deleted the deprecated `userInputReturn` predicate from the `Security.qll`.
|
||||
* Deleted the deprecated `isUserInput` predicate and its convenience accessor from the `Security.qll`.
|
||||
* Deleted the deprecated `userInputArgument` predicate from the `SecurityOptions.qll`.
|
||||
* Deleted the deprecated `userInputReturned` predicate from the `SecurityOptions.qll`.
|
||||
@@ -1,7 +1,8 @@
|
||||
import cpp
|
||||
import semmle.code.cpp.dataflow.new.DataFlow
|
||||
import experimental.quantum.OpenSSL.AlgorithmInstances.KnownAlgorithmConstants
|
||||
import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumers
|
||||
private import experimental.quantum.Language
|
||||
private import semmle.code.cpp.dataflow.new.DataFlow
|
||||
private import experimental.quantum.OpenSSL.AlgorithmInstances.KnownAlgorithmConstants
|
||||
private import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumers
|
||||
|
||||
/**
|
||||
* Traces 'known algorithms' to AVCs, specifically
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
import cpp
|
||||
import experimental.quantum.Language
|
||||
import OpenSSLAlgorithmInstanceBase
|
||||
import experimental.quantum.OpenSSL.AlgorithmInstances.KnownAlgorithmConstants
|
||||
import experimental.quantum.OpenSSL.AlgorithmValueConsumers.DirectAlgorithmValueConsumer
|
||||
import AlgToAVCFlow
|
||||
private import experimental.quantum.Language
|
||||
private import OpenSSLAlgorithmInstanceBase
|
||||
private import experimental.quantum.OpenSSL.AlgorithmInstances.KnownAlgorithmConstants
|
||||
private import experimental.quantum.OpenSSL.AlgorithmValueConsumers.DirectAlgorithmValueConsumer
|
||||
private import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumerBase
|
||||
private import AlgToAVCFlow
|
||||
|
||||
/**
|
||||
* Given a `KnownOpenSSLBlockModeAlgorithmConstant`, converts this to a block family type.
|
||||
|
||||
@@ -1,12 +1,13 @@
|
||||
import cpp
|
||||
import experimental.quantum.Language
|
||||
import KnownAlgorithmConstants
|
||||
import Crypto::KeyOpAlg as KeyOpAlg
|
||||
import OpenSSLAlgorithmInstanceBase
|
||||
import PaddingAlgorithmInstance
|
||||
import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumers
|
||||
import AlgToAVCFlow
|
||||
import BlockAlgorithmInstance
|
||||
private import experimental.quantum.Language
|
||||
private import KnownAlgorithmConstants
|
||||
private import Crypto::KeyOpAlg as KeyOpAlg
|
||||
private import OpenSSLAlgorithmInstanceBase
|
||||
private import PaddingAlgorithmInstance
|
||||
private import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumerBase
|
||||
private import experimental.quantum.OpenSSL.AlgorithmValueConsumers.DirectAlgorithmValueConsumer
|
||||
private import AlgToAVCFlow
|
||||
private import BlockAlgorithmInstance
|
||||
|
||||
/**
|
||||
* Given a `KnownOpenSSLCipherAlgorithmConstant`, converts this to a cipher family type.
|
||||
|
||||
@@ -0,0 +1,46 @@
|
||||
import cpp
|
||||
private import experimental.quantum.Language
|
||||
private import KnownAlgorithmConstants
|
||||
private import OpenSSLAlgorithmInstanceBase
|
||||
private import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumerBase
|
||||
private import experimental.quantum.OpenSSL.AlgorithmValueConsumers.DirectAlgorithmValueConsumer
|
||||
private import AlgToAVCFlow
|
||||
|
||||
class KnownOpenSSLEllipticCurveConstantAlgorithmInstance extends OpenSSLAlgorithmInstance,
|
||||
Crypto::EllipticCurveInstance instanceof KnownOpenSSLEllipticCurveAlgorithmConstant
|
||||
{
|
||||
OpenSSLAlgorithmValueConsumer getterCall;
|
||||
|
||||
KnownOpenSSLEllipticCurveConstantAlgorithmInstance() {
|
||||
// Two possibilities:
|
||||
// 1) The source is a literal and flows to a getter, then we know we have an instance
|
||||
// 2) The source is a KnownOpenSSLAlgorithm is call, and we know we have an instance immediately from that
|
||||
// Possibility 1:
|
||||
this instanceof Literal and
|
||||
exists(DataFlow::Node src, DataFlow::Node sink |
|
||||
// Sink is an argument to a CipherGetterCall
|
||||
sink = getterCall.getInputNode() and
|
||||
// Source is `this`
|
||||
src.asExpr() = this and
|
||||
// This traces to a getter
|
||||
KnownOpenSSLAlgorithmToAlgorithmValueConsumerFlow::flow(src, sink)
|
||||
)
|
||||
or
|
||||
// Possibility 2:
|
||||
this instanceof DirectAlgorithmValueConsumer and getterCall = this
|
||||
}
|
||||
|
||||
override OpenSSLAlgorithmValueConsumer getAVC() { result = getterCall }
|
||||
|
||||
override string getRawEllipticCurveName() { result = this.(Literal).getValue().toString() }
|
||||
|
||||
override Crypto::TEllipticCurveType getEllipticCurveType() {
|
||||
Crypto::ellipticCurveNameToKeySizeAndFamilyMapping(this.(KnownOpenSSLEllipticCurveAlgorithmConstant)
|
||||
.getNormalizedName(), _, result)
|
||||
}
|
||||
|
||||
override int getKeySize() {
|
||||
Crypto::ellipticCurveNameToKeySizeAndFamilyMapping(this.(KnownOpenSSLEllipticCurveAlgorithmConstant)
|
||||
.getNormalizedName(), result, _)
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,9 @@
|
||||
import cpp
|
||||
import experimental.quantum.Language
|
||||
import KnownAlgorithmConstants
|
||||
import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumers
|
||||
import AlgToAVCFlow
|
||||
private import experimental.quantum.Language
|
||||
private import KnownAlgorithmConstants
|
||||
private import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumers
|
||||
private import experimental.quantum.OpenSSL.AlgorithmInstances.OpenSSLAlgorithmInstanceBase
|
||||
private import AlgToAVCFlow
|
||||
|
||||
predicate knownOpenSSLConstantToHashFamilyType(
|
||||
KnownOpenSSLHashAlgorithmConstant e, Crypto::THashType type
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import cpp
|
||||
import experimental.quantum.OpenSSL.LibraryDetector
|
||||
private import experimental.quantum.OpenSSL.LibraryDetector
|
||||
|
||||
predicate resolveAlgorithmFromExpr(Expr e, string normalizedName, string algType) {
|
||||
resolveAlgorithmFromCall(e, normalizedName, algType)
|
||||
@@ -67,6 +67,15 @@ class KnownOpenSSLHashAlgorithmConstant extends KnownOpenSSLAlgorithmConstant {
|
||||
}
|
||||
}
|
||||
|
||||
class KnownOpenSSLEllipticCurveAlgorithmConstant extends KnownOpenSSLAlgorithmConstant {
|
||||
KnownOpenSSLEllipticCurveAlgorithmConstant() {
|
||||
exists(string algType |
|
||||
resolveAlgorithmFromExpr(this, _, algType) and
|
||||
algType.toLowerCase().matches("elliptic_curve")
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Resolves a call to a 'direct algorithm getter', e.g., EVP_MD5()
|
||||
* This approach to fetching algorithms was used in OpenSSL 1.0.2.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import experimental.quantum.Language
|
||||
import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumerBase
|
||||
private import experimental.quantum.Language
|
||||
private import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumerBase
|
||||
|
||||
abstract class OpenSSLAlgorithmInstance extends Crypto::AlgorithmInstance {
|
||||
abstract OpenSSLAlgorithmValueConsumer getAVC();
|
||||
|
||||
@@ -3,3 +3,4 @@ import CipherAlgorithmInstance
|
||||
import PaddingAlgorithmInstance
|
||||
import BlockAlgorithmInstance
|
||||
import HashAlgorithmInstance
|
||||
import EllipticCurveAlgorithmInstance
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
import cpp
|
||||
import experimental.quantum.Language
|
||||
import OpenSSLAlgorithmInstanceBase
|
||||
import experimental.quantum.OpenSSL.AlgorithmInstances.KnownAlgorithmConstants
|
||||
import AlgToAVCFlow
|
||||
import experimental.quantum.OpenSSL.AlgorithmValueConsumers.DirectAlgorithmValueConsumer
|
||||
private import experimental.quantum.Language
|
||||
private import OpenSSLAlgorithmInstanceBase
|
||||
private import experimental.quantum.OpenSSL.AlgorithmInstances.KnownAlgorithmConstants
|
||||
private import AlgToAVCFlow
|
||||
private import experimental.quantum.OpenSSL.AlgorithmValueConsumers.DirectAlgorithmValueConsumer
|
||||
private import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumerBase
|
||||
|
||||
/**
|
||||
* Given a `KnownOpenSSLPaddingAlgorithmConstant`, converts this to a padding family type.
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import cpp
|
||||
import experimental.quantum.Language
|
||||
import experimental.quantum.OpenSSL.LibraryDetector
|
||||
import experimental.quantum.OpenSSL.AlgorithmInstances.KnownAlgorithmConstants
|
||||
import experimental.quantum.OpenSSL.AlgorithmInstances.OpenSSLAlgorithmInstanceBase
|
||||
import OpenSSLAlgorithmValueConsumerBase
|
||||
private import experimental.quantum.Language
|
||||
private import experimental.quantum.OpenSSL.LibraryDetector
|
||||
private import experimental.quantum.OpenSSL.AlgorithmInstances.KnownAlgorithmConstants
|
||||
private import experimental.quantum.OpenSSL.AlgorithmInstances.OpenSSLAlgorithmInstanceBase
|
||||
private import OpenSSLAlgorithmValueConsumerBase
|
||||
|
||||
abstract class CipherAlgorithmValueConsumer extends OpenSSLAlgorithmValueConsumer { }
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import cpp
|
||||
import experimental.quantum.Language
|
||||
import experimental.quantum.OpenSSL.AlgorithmInstances.KnownAlgorithmConstants
|
||||
import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumerBase
|
||||
private import experimental.quantum.Language
|
||||
private import experimental.quantum.OpenSSL.AlgorithmInstances.KnownAlgorithmConstants
|
||||
private import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumerBase
|
||||
|
||||
// TODO: can self referential to itself, which is also an algorithm (Known algorithm)
|
||||
/**
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
import cpp
|
||||
private import experimental.quantum.Language
|
||||
private import experimental.quantum.OpenSSL.LibraryDetector
|
||||
private import experimental.quantum.OpenSSL.AlgorithmInstances.KnownAlgorithmConstants
|
||||
private import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumerBase
|
||||
private import experimental.quantum.OpenSSL.AlgorithmInstances.OpenSSLAlgorithmInstances
|
||||
|
||||
abstract class EllipticCurveValueConsumer extends OpenSSLAlgorithmValueConsumer { }
|
||||
|
||||
//https://docs.openssl.org/3.0/man3/EC_KEY_new/#name
|
||||
class EVPEllipticCurveAlgorithmConsumer extends EllipticCurveValueConsumer {
|
||||
DataFlow::Node valueArgNode;
|
||||
DataFlow::Node resultNode;
|
||||
|
||||
EVPEllipticCurveAlgorithmConsumer() {
|
||||
resultNode.asExpr() = this.(Call) and // in all cases the result is the return
|
||||
isPossibleOpenSSLFunction(this.(Call).getTarget()) and
|
||||
(
|
||||
this.(Call).getTarget().getName() in ["EVP_EC_gen", "EC_KEY_new_by_curve_name"] and
|
||||
valueArgNode.asExpr() = this.(Call).getArgument(0)
|
||||
or
|
||||
this.(Call).getTarget().getName() in [
|
||||
"EC_KEY_new_by_curve_name_ex", "EVP_PKEY_CTX_set_ec_paramgen_curve_nid"
|
||||
] and
|
||||
valueArgNode.asExpr() = this.(Call).getArgument(2)
|
||||
)
|
||||
}
|
||||
|
||||
override Crypto::AlgorithmInstance getAKnownAlgorithmSource() {
|
||||
exists(OpenSSLAlgorithmInstance i | i.getAVC() = this and result = i)
|
||||
}
|
||||
|
||||
override DataFlow::Node getResultNode() { result = resultNode }
|
||||
|
||||
override Crypto::ConsumerInputDataFlowNode getInputNode() { result = valueArgNode }
|
||||
}
|
||||
@@ -1,12 +1,9 @@
|
||||
// import EVPHashInitializer
|
||||
// import EVPHashOperation
|
||||
// import EVPHashAlgorithmSource
|
||||
import cpp
|
||||
import experimental.quantum.Language
|
||||
import semmle.code.cpp.dataflow.new.DataFlow
|
||||
import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumerBase
|
||||
import experimental.quantum.OpenSSL.AlgorithmInstances.OpenSSLAlgorithmInstances
|
||||
import experimental.quantum.OpenSSL.LibraryDetector
|
||||
private import experimental.quantum.Language
|
||||
private import semmle.code.cpp.dataflow.new.DataFlow
|
||||
private import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumerBase
|
||||
private import experimental.quantum.OpenSSL.AlgorithmInstances.OpenSSLAlgorithmInstances
|
||||
private import experimental.quantum.OpenSSL.LibraryDetector
|
||||
|
||||
abstract class HashAlgorithmValueConsumer extends OpenSSLAlgorithmValueConsumer { }
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import experimental.quantum.Language
|
||||
import semmle.code.cpp.dataflow.new.DataFlow
|
||||
private import experimental.quantum.Language
|
||||
private import semmle.code.cpp.dataflow.new.DataFlow
|
||||
|
||||
abstract class OpenSSLAlgorithmValueConsumer extends Crypto::AlgorithmValueConsumer instanceof Call {
|
||||
/**
|
||||
|
||||
@@ -3,3 +3,4 @@ import CipherAlgorithmValueConsumer
|
||||
import DirectAlgorithmValueConsumer
|
||||
import PaddingAlgorithmValueConsumer
|
||||
import HashAlgorithmValueConsumer
|
||||
import EllipticCurveAlgorithmValueConsumer
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import cpp
|
||||
import experimental.quantum.Language
|
||||
import experimental.quantum.OpenSSL.LibraryDetector
|
||||
import experimental.quantum.OpenSSL.AlgorithmInstances.KnownAlgorithmConstants
|
||||
import experimental.quantum.OpenSSL.AlgorithmInstances.OpenSSLAlgorithmInstanceBase
|
||||
import OpenSSLAlgorithmValueConsumerBase
|
||||
private import experimental.quantum.Language
|
||||
private import experimental.quantum.OpenSSL.LibraryDetector
|
||||
private import experimental.quantum.OpenSSL.AlgorithmInstances.KnownAlgorithmConstants
|
||||
private import experimental.quantum.OpenSSL.AlgorithmInstances.OpenSSLAlgorithmInstanceBase
|
||||
private import OpenSSLAlgorithmValueConsumerBase
|
||||
|
||||
abstract class PaddingAlgorithmValueConsumer extends OpenSSLAlgorithmValueConsumer { }
|
||||
|
||||
|
||||
@@ -6,4 +6,5 @@ module OpenSSLModel {
|
||||
import experimental.quantum.OpenSSL.AlgorithmInstances.OpenSSLAlgorithmInstances
|
||||
import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumers
|
||||
import experimental.quantum.OpenSSL.Operations.OpenSSLOperations
|
||||
import experimental.quantum.OpenSSL.Random
|
||||
}
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
* Models cipher initialization for EVP cipher operations.
|
||||
*/
|
||||
|
||||
import experimental.quantum.Language
|
||||
import experimental.quantum.OpenSSL.CtxFlow as CTXFlow
|
||||
private import experimental.quantum.Language
|
||||
private import experimental.quantum.OpenSSL.CtxFlow as CTXFlow
|
||||
|
||||
module EncValToInitEncArgConfig implements DataFlow::ConfigSig {
|
||||
predicate isSource(DataFlow::Node source) { source.asExpr().getValue().toInt() in [0, 1] }
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import experimental.quantum.Language
|
||||
import experimental.quantum.OpenSSL.CtxFlow as CTXFlow
|
||||
import EVPCipherInitializer
|
||||
import OpenSSLOperationBase
|
||||
import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumers
|
||||
private import experimental.quantum.Language
|
||||
private import experimental.quantum.OpenSSL.CtxFlow as CTXFlow
|
||||
private import EVPCipherInitializer
|
||||
private import OpenSSLOperationBase
|
||||
private import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumers
|
||||
|
||||
private module AlgGetterToAlgConsumerConfig implements DataFlow::ConfigSig {
|
||||
predicate isSource(DataFlow::Node source) {
|
||||
@@ -74,8 +74,8 @@ class EVP_Cipher_Call extends EVP_Cipher_Operation {
|
||||
}
|
||||
|
||||
// NOTE: not modeled as cipher operations, these are intermediate calls
|
||||
class EVP_Update_Call extends Call {
|
||||
EVP_Update_Call() {
|
||||
class EVP_Cipher_Update_Call extends Call {
|
||||
EVP_Cipher_Update_Call() {
|
||||
this.(Call).getTarget().getName() in [
|
||||
"EVP_EncryptUpdate", "EVP_DecryptUpdate", "EVP_CipherUpdate"
|
||||
]
|
||||
@@ -88,15 +88,15 @@ class EVP_Update_Call extends Call {
|
||||
Expr getContextArg() { result = this.(Call).getArgument(0) }
|
||||
}
|
||||
|
||||
class EVP_Final_Call extends EVP_Cipher_Operation {
|
||||
EVP_Final_Call() {
|
||||
class EVP_Cipher_Final_Call extends EVP_Cipher_Operation {
|
||||
EVP_Cipher_Final_Call() {
|
||||
this.(Call).getTarget().getName() in [
|
||||
"EVP_EncryptFinal_ex", "EVP_DecryptFinal_ex", "EVP_CipherFinal_ex", "EVP_EncryptFinal",
|
||||
"EVP_DecryptFinal", "EVP_CipherFinal"
|
||||
]
|
||||
}
|
||||
|
||||
EVP_Update_Call getUpdateCalls() {
|
||||
EVP_Cipher_Update_Call getUpdateCalls() {
|
||||
CTXFlow::ctxArgFlowsToCtxArg(result.getContextArg(), this.getContextArg())
|
||||
}
|
||||
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
* https://docs.openssl.org/3.0/man3/EVP_DigestInit/#synopsis
|
||||
*/
|
||||
|
||||
import experimental.quantum.Language
|
||||
import experimental.quantum.OpenSSL.CtxFlow as CTXFlow
|
||||
import experimental.quantum.OpenSSL.LibraryDetector
|
||||
import OpenSSLOperationBase
|
||||
import EVPHashInitializer
|
||||
import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumers
|
||||
private import experimental.quantum.Language
|
||||
private import experimental.quantum.OpenSSL.CtxFlow as CTXFlow
|
||||
private import experimental.quantum.OpenSSL.LibraryDetector
|
||||
private import OpenSSLOperationBase
|
||||
private import EVPHashInitializer
|
||||
private import experimental.quantum.OpenSSL.AlgorithmValueConsumers.OpenSSLAlgorithmValueConsumers
|
||||
|
||||
// import EVPHashConsumers
|
||||
abstract class EVP_Hash_Operation extends OpenSSLOperation, Crypto::HashOperationInstance {
|
||||
@@ -16,6 +16,16 @@ abstract class EVP_Hash_Operation extends OpenSSLOperation, Crypto::HashOperatio
|
||||
EVP_Hash_Initializer getInitCall() {
|
||||
CTXFlow::ctxArgFlowsToCtxArg(result.getContextArg(), this.getContextArg())
|
||||
}
|
||||
|
||||
/**
|
||||
* By default, the algorithm value comes from the init call.
|
||||
* There are variants where this isn't true, in which case the
|
||||
* subclass should override this method.
|
||||
*/
|
||||
override Crypto::AlgorithmValueConsumer getAnAlgorithmValueConsumer() {
|
||||
AlgGetterToAlgConsumerFlow::flow(result.(OpenSSLAlgorithmValueConsumer).getResultNode(),
|
||||
DataFlow::exprNode(this.getInitCall().getAlgorithmArg()))
|
||||
}
|
||||
}
|
||||
|
||||
private module AlgGetterToAlgConsumerConfig implements DataFlow::ConfigSig {
|
||||
@@ -88,30 +98,34 @@ class EVP_Digest_Operation extends EVP_Hash_Operation {
|
||||
|
||||
override Crypto::ConsumerInputDataFlowNode getInputConsumer() { result = this.getInputNode() }
|
||||
}
|
||||
// // override Crypto::AlgorithmValueConsumer getAnAlgorithmValueConsumer() {
|
||||
// // AlgGetterToAlgConsumerFlow::flow(result.(OpenSSLAlgorithmValueConsumer).getResultNode(),
|
||||
// // DataFlow::exprNode(this.getInitCall().getAlgorithmArg()))
|
||||
// // }
|
||||
// // ***** TODO *** complete modelinlg for hash operations, but have consideration for terminal and non-terminal (non intermedaite) steps
|
||||
// // see the JCA. May need to update the cipher operations similarly
|
||||
// // ALSO SEE cipher for how we currently model initialization of the algorithm through an init call
|
||||
// class EVP_DigestUpdate_Operation extends EVP_Hash_Operation {
|
||||
// EVP_DigestUpdate_Operation() {
|
||||
// this.(Call).getTarget().getName() = "EVP_DigestUpdate" and
|
||||
// isPossibleOpenSSLFunction(this.(Call).getTarget())
|
||||
// }
|
||||
// override Crypto::AlgorithmConsumer getAlgorithmConsumer() {
|
||||
// this.getInitCall().getAlgorithmArg() = result
|
||||
// }
|
||||
// }
|
||||
// class EVP_DigestFinal_Variants_Operation extends EVP_Hash_Operation {
|
||||
// EVP_DigestFinal_Variants_Operation() {
|
||||
// this.(Call).getTarget().getName() in [
|
||||
// "EVP_DigestFinal", "EVP_DigestFinal_ex", "EVP_DigestFinalXOF"
|
||||
// ] and
|
||||
// isPossibleOpenSSLFunction(this.(Call).getTarget())
|
||||
// }
|
||||
// override Crypto::AlgorithmConsumer getAlgorithmConsumer() {
|
||||
// this.getInitCall().getAlgorithmArg() = result
|
||||
// }
|
||||
// }
|
||||
|
||||
// NOTE: not modeled as hash operations, these are intermediate calls
|
||||
class EVP_Digest_Update_Call extends Call {
|
||||
EVP_Digest_Update_Call() { this.(Call).getTarget().getName() in ["EVP_DigestUpdate"] }
|
||||
|
||||
Expr getInputArg() { result = this.(Call).getArgument(1) }
|
||||
|
||||
DataFlow::Node getInputNode() { result.asExpr() = this.getInputArg() }
|
||||
|
||||
Expr getContextArg() { result = this.(Call).getArgument(0) }
|
||||
}
|
||||
|
||||
class EVP_Digest_Final_Call extends EVP_Hash_Operation {
|
||||
EVP_Digest_Final_Call() {
|
||||
this.(Call).getTarget().getName() in [
|
||||
"EVP_DigestFinal", "EVP_DigestFinal_ex", "EVP_DigestFinalXOF"
|
||||
]
|
||||
}
|
||||
|
||||
EVP_Digest_Update_Call getUpdateCalls() {
|
||||
CTXFlow::ctxArgFlowsToCtxArg(result.getContextArg(), this.getContextArg())
|
||||
}
|
||||
|
||||
override Expr getInputArg() { result = this.getUpdateCalls().getInputArg() }
|
||||
|
||||
override Crypto::ConsumerInputDataFlowNode getInputConsumer() { result = this.getInputNode() }
|
||||
|
||||
override Expr getOutputArg() { result = this.(Call).getArgument(1) }
|
||||
|
||||
override Crypto::ArtifactOutputDataFlowNode getOutputArtifact() { result = this.getOutputNode() }
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import experimental.quantum.Language
|
||||
private import experimental.quantum.Language
|
||||
|
||||
abstract class OpenSSLOperation extends Crypto::OperationInstance instanceof Call {
|
||||
abstract Expr getInputArg();
|
||||
|
||||
@@ -98,19 +98,6 @@ class Node extends TNode {
|
||||
/** Gets the location of this element. */
|
||||
Location getLocation() { none() } // overridden by subclasses
|
||||
|
||||
/**
|
||||
* Holds if this element is at the specified location.
|
||||
* The location spans column `startcolumn` of line `startline` to
|
||||
* column `endcolumn` of line `endline` in file `filepath`.
|
||||
* For more information, see
|
||||
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
|
||||
*/
|
||||
deprecated predicate hasLocationInfo(
|
||||
string filepath, int startline, int startcolumn, int endline, int endcolumn
|
||||
) {
|
||||
this.getLocation().hasLocationInfo(filepath, startline, startcolumn, endline, endcolumn)
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets an upper bound on the type of this node.
|
||||
*/
|
||||
|
||||
@@ -538,19 +538,6 @@ class Node extends TIRDataFlowNode {
|
||||
none() // overridden by subclasses
|
||||
}
|
||||
|
||||
/**
|
||||
* Holds if this element is at the specified location.
|
||||
* The location spans column `startcolumn` of line `startline` to
|
||||
* column `endcolumn` of line `endline` in file `filepath`.
|
||||
* For more information, see
|
||||
* [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
|
||||
*/
|
||||
deprecated predicate hasLocationInfo(
|
||||
string filepath, int startline, int startcolumn, int endline, int endcolumn
|
||||
) {
|
||||
this.getLocation().hasLocationInfo(filepath, startline, startcolumn, endline, endcolumn)
|
||||
}
|
||||
|
||||
/** Gets a textual representation of this element. */
|
||||
cached
|
||||
final string toString() {
|
||||
|
||||
@@ -45,6 +45,28 @@ private module Cached {
|
||||
)
|
||||
}
|
||||
|
||||
private Expr getRankedElementExpr(ArrayAggregateLiteral aggr, int rnk) {
|
||||
result =
|
||||
rank[rnk + 1](Expr e, int elementIndex, int position |
|
||||
e = aggr.getElementExpr(elementIndex, position)
|
||||
|
|
||||
e order by elementIndex, position
|
||||
)
|
||||
}
|
||||
|
||||
private class LastArrayAggregateStore extends StoreInstruction {
|
||||
ArrayAggregateLiteral aggr;
|
||||
|
||||
LastArrayAggregateStore() {
|
||||
exists(int rnk |
|
||||
this.getSourceValue().getUnconvertedResultExpression() = getRankedElementExpr(aggr, rnk) and
|
||||
not exists(getRankedElementExpr(aggr, rnk + 1))
|
||||
)
|
||||
}
|
||||
|
||||
ArrayAggregateLiteral getArrayAggregateLiteral() { result = aggr }
|
||||
}
|
||||
|
||||
private Expr getConvertedResultExpressionImpl0(Instruction instr) {
|
||||
// IR construction inserts an additional cast to a `size_t` on the extent
|
||||
// of a `new[]` expression. The resulting `ConvertInstruction` doesn't have
|
||||
@@ -95,6 +117,16 @@ private module Cached {
|
||||
tco.producesExprResult() and
|
||||
result = asDefinitionImpl0(instr)
|
||||
)
|
||||
or
|
||||
// IR construction breaks an array aggregate literal `{1, 2, 3}` into a
|
||||
// sequence of `StoreInstruction`s. So there's no instruction `i` for which
|
||||
// `i.getUnconvertedResultExpression() instanceof ArrayAggregateLiteral`.
|
||||
// So we map the instruction node corresponding to the last `Store`
|
||||
// instruction of the sequence to the result of the array aggregate
|
||||
// literal. This makes sense since this store will immediately flow into
|
||||
// the indirect node representing the array. So this node does represent
|
||||
// the array after it has been fully initialized.
|
||||
result = instr.(LastArrayAggregateStore).getArrayAggregateLiteral()
|
||||
}
|
||||
|
||||
private Expr getConvertedResultExpressionImpl(Instruction instr) {
|
||||
|
||||
@@ -42,58 +42,6 @@ class SecurityOptions extends string {
|
||||
)
|
||||
}
|
||||
|
||||
/**
|
||||
* The argument of the given function is filled in from user input.
|
||||
*/
|
||||
deprecated predicate userInputArgument(FunctionCall functionCall, int arg) {
|
||||
exists(string fname |
|
||||
functionCall.getTarget().hasGlobalOrStdName(fname) and
|
||||
exists(functionCall.getArgument(arg)) and
|
||||
(
|
||||
fname = ["fread", "fgets", "fgetws", "gets"] and arg = 0
|
||||
or
|
||||
fname = "scanf" and arg >= 1
|
||||
or
|
||||
fname = "fscanf" and arg >= 2
|
||||
)
|
||||
or
|
||||
functionCall.getTarget().hasGlobalName(fname) and
|
||||
exists(functionCall.getArgument(arg)) and
|
||||
fname = "getaddrinfo" and
|
||||
arg = 3
|
||||
)
|
||||
or
|
||||
exists(RemoteFlowSourceFunction remote, FunctionOutput output |
|
||||
functionCall.getTarget() = remote and
|
||||
output.isParameterDerefOrQualifierObject(arg) and
|
||||
remote.hasRemoteFlowSource(output, _)
|
||||
)
|
||||
}
|
||||
|
||||
/**
|
||||
* The return value of the given function is filled in from user input.
|
||||
*/
|
||||
deprecated predicate userInputReturned(FunctionCall functionCall) {
|
||||
exists(string fname |
|
||||
functionCall.getTarget().getName() = fname and
|
||||
(
|
||||
fname = ["fgets", "gets"] or
|
||||
this.userInputReturn(fname)
|
||||
)
|
||||
)
|
||||
or
|
||||
exists(RemoteFlowSourceFunction remote, FunctionOutput output |
|
||||
functionCall.getTarget() = remote and
|
||||
(output.isReturnValue() or output.isReturnValueDeref()) and
|
||||
remote.hasRemoteFlowSource(output, _)
|
||||
)
|
||||
}
|
||||
|
||||
/**
|
||||
* DEPRECATED: Users should override `userInputReturned()` instead.
|
||||
*/
|
||||
deprecated predicate userInputReturn(string function) { none() }
|
||||
|
||||
/**
|
||||
* The argument of the given function is used for running a process or loading
|
||||
* a library.
|
||||
@@ -108,29 +56,6 @@ class SecurityOptions extends string {
|
||||
function = ["LoadLibrary", "LoadLibraryA", "LoadLibraryW"] and arg = 0
|
||||
}
|
||||
|
||||
/**
|
||||
* This predicate should hold if the expression is directly
|
||||
* computed from user input. Such expressions are treated as
|
||||
* sources of taint.
|
||||
*/
|
||||
deprecated predicate isUserInput(Expr expr, string cause) {
|
||||
exists(FunctionCall fc, int i |
|
||||
this.userInputArgument(fc, i) and
|
||||
expr = fc.getArgument(i) and
|
||||
cause = fc.getTarget().getName()
|
||||
)
|
||||
or
|
||||
exists(FunctionCall fc |
|
||||
this.userInputReturned(fc) and
|
||||
expr = fc and
|
||||
cause = fc.getTarget().getName()
|
||||
)
|
||||
or
|
||||
commandLineArg(expr) and cause = "argv"
|
||||
or
|
||||
expr.(EnvironmentRead).getSourceDescription() = cause
|
||||
}
|
||||
|
||||
/**
|
||||
* This predicate should hold if the expression raises privilege for the
|
||||
* current session. The default definition only holds true for some
|
||||
@@ -152,16 +77,6 @@ class SecurityOptions extends string {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* An access to the argv argument to main().
|
||||
*/
|
||||
private predicate commandLineArg(Expr e) {
|
||||
exists(Parameter argv |
|
||||
argv(argv) and
|
||||
argv.getAnAccess() = e
|
||||
)
|
||||
}
|
||||
|
||||
/** The argv parameter to the main function */
|
||||
predicate argv(Parameter argv) {
|
||||
exists(Function f |
|
||||
@@ -173,21 +88,6 @@ predicate argv(Parameter argv) {
|
||||
/** Convenience accessor for SecurityOptions.isPureFunction */
|
||||
predicate isPureFunction(string name) { exists(SecurityOptions opts | opts.isPureFunction(name)) }
|
||||
|
||||
/** Convenience accessor for SecurityOptions.userInputArgument */
|
||||
deprecated predicate userInputArgument(FunctionCall functionCall, int arg) {
|
||||
exists(SecurityOptions opts | opts.userInputArgument(functionCall, arg))
|
||||
}
|
||||
|
||||
/** Convenience accessor for SecurityOptions.userInputReturn */
|
||||
deprecated predicate userInputReturned(FunctionCall functionCall) {
|
||||
exists(SecurityOptions opts | opts.userInputReturned(functionCall))
|
||||
}
|
||||
|
||||
/** Convenience accessor for SecurityOptions.isUserInput */
|
||||
deprecated predicate isUserInput(Expr expr, string cause) {
|
||||
exists(SecurityOptions opts | opts.isUserInput(expr, cause))
|
||||
}
|
||||
|
||||
/** Convenience accessor for SecurityOptions.isProcessOperationArgument */
|
||||
predicate isProcessOperationArgument(string function, int arg) {
|
||||
exists(SecurityOptions opts | opts.isProcessOperationArgument(function, arg))
|
||||
|
||||
@@ -22,28 +22,4 @@ class CustomSecurityOptions extends SecurityOptions {
|
||||
// for example: (function = "MySpecialSqlFunction" and arg = 0)
|
||||
none() // rules to match custom functions replace this line
|
||||
}
|
||||
|
||||
deprecated override predicate userInputArgument(FunctionCall functionCall, int arg) {
|
||||
SecurityOptions.super.userInputArgument(functionCall, arg)
|
||||
or
|
||||
exists(string fname |
|
||||
functionCall.getTarget().hasGlobalName(fname) and
|
||||
exists(functionCall.getArgument(arg)) and
|
||||
// --- custom functions that return user input via one of their arguments:
|
||||
// 'arg' is the 0-based index of the argument that is used to return user input
|
||||
// for example: (fname = "readXmlInto" and arg = 1)
|
||||
none() // rules to match custom functions replace this line
|
||||
)
|
||||
}
|
||||
|
||||
deprecated override predicate userInputReturned(FunctionCall functionCall) {
|
||||
SecurityOptions.super.userInputReturned(functionCall)
|
||||
or
|
||||
exists(string fname |
|
||||
functionCall.getTarget().hasGlobalName(fname) and
|
||||
// --- custom functions that return user input via their return value:
|
||||
// for example: fname = "xmlReadAttribute"
|
||||
none() // rules to match custom functions replace this line
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,7 +26,7 @@ module IRFlowTest<IRDataFlow::GlobalFlowSig Flow> implements TestSig {
|
||||
n =
|
||||
strictcount(int line, int column |
|
||||
Flow::flow(any(IRDataFlow::Node otherSource |
|
||||
otherSource.hasLocationInfo(_, line, column, _, _)
|
||||
otherSource.getLocation().hasLocationInfo(_, line, column, _, _)
|
||||
), sink)
|
||||
) and
|
||||
(
|
||||
@@ -55,7 +55,7 @@ module AstFlowTest<AstDataFlow::GlobalFlowSig Flow> implements TestSig {
|
||||
n =
|
||||
strictcount(int line, int column |
|
||||
Flow::flow(any(AstDataFlow::Node otherSource |
|
||||
otherSource.hasLocationInfo(_, line, column, _, _)
|
||||
otherSource.getLocation().hasLocationInfo(_, line, column, _, _)
|
||||
), sink)
|
||||
) and
|
||||
(
|
||||
|
||||
@@ -35,6 +35,6 @@ void test_aggregate_literal() {
|
||||
|
||||
S s5 = {.a = 1, .b = 2}; // $ asExpr=1 asExpr=2 asExpr={...}
|
||||
|
||||
int xs[] = {1, 2, 3}; // $ asExpr=1 asExpr=2 asExpr=3 MISSING: asExpr={...}
|
||||
const int ys[] = {[0] = 4, [1] = 5, [0] = 6}; // $ asExpr=4 asExpr=5 asExpr=6 MISSING: asExpr={...}
|
||||
int xs[] = {1, 2, 3}; // $ asExpr=1 asExpr=2 asExpr=3 asExpr={...}
|
||||
const int ys[] = {[0] = 4, [1] = 5, [0] = 6}; // $ asExpr=4 asExpr=5 asExpr=6 asExpr={...}
|
||||
}
|
||||
@@ -2,8 +2,8 @@ edges
|
||||
| consts.cpp:24:7:24:9 | **gv1 | consts.cpp:25:2:25:4 | *a | provenance | |
|
||||
| consts.cpp:24:7:24:9 | **gv1 | consts.cpp:30:9:30:14 | *access to array | provenance | |
|
||||
| consts.cpp:24:7:24:9 | **gv1 | consts.cpp:123:2:123:12 | *... = ... | provenance | |
|
||||
| consts.cpp:25:2:25:4 | *a | consts.cpp:26:2:26:4 | *b | provenance | |
|
||||
| consts.cpp:26:2:26:4 | *b | consts.cpp:24:7:24:9 | **gv1 | provenance | |
|
||||
| consts.cpp:25:2:25:4 | *a | consts.cpp:26:2:26:4 | *{...} | provenance | |
|
||||
| consts.cpp:26:2:26:4 | *{...} | consts.cpp:24:7:24:9 | **gv1 | provenance | |
|
||||
| consts.cpp:29:7:29:25 | **nonConstFuncToArray | consts.cpp:126:9:126:30 | *call to nonConstFuncToArray | provenance | |
|
||||
| consts.cpp:30:9:30:14 | *access to array | consts.cpp:29:7:29:25 | **nonConstFuncToArray | provenance | |
|
||||
| consts.cpp:85:7:85:8 | gets output argument | consts.cpp:86:9:86:10 | *v1 | provenance | |
|
||||
@@ -14,7 +14,7 @@ edges
|
||||
| consts.cpp:85:7:85:8 | gets output argument | consts.cpp:129:19:129:20 | *v1 | provenance | |
|
||||
| consts.cpp:85:7:85:8 | gets output argument | consts.cpp:135:9:135:11 | *v10 | provenance | TaintFunction |
|
||||
| consts.cpp:90:2:90:14 | *... = ... | consts.cpp:91:9:91:10 | *v2 | provenance | |
|
||||
| consts.cpp:90:2:90:14 | *... = ... | consts.cpp:115:21:115:22 | *v2 | provenance | |
|
||||
| consts.cpp:90:2:90:14 | *... = ... | consts.cpp:115:21:115:22 | *{...} | provenance | |
|
||||
| consts.cpp:90:7:90:10 | *call to gets | consts.cpp:90:2:90:14 | *... = ... | provenance | |
|
||||
| consts.cpp:90:12:90:13 | gets output argument | consts.cpp:94:13:94:14 | *v1 | provenance | |
|
||||
| consts.cpp:90:12:90:13 | gets output argument | consts.cpp:99:2:99:8 | *... = ... | provenance | |
|
||||
@@ -28,9 +28,9 @@ edges
|
||||
| consts.cpp:106:13:106:19 | *call to varFunc | consts.cpp:107:9:107:10 | *v5 | provenance | |
|
||||
| consts.cpp:111:2:111:15 | *... = ... | consts.cpp:112:9:112:10 | *v6 | provenance | |
|
||||
| consts.cpp:111:7:111:13 | *call to varFunc | consts.cpp:111:2:111:15 | *... = ... | provenance | |
|
||||
| consts.cpp:115:17:115:18 | *v1 | consts.cpp:115:21:115:22 | *v2 | provenance | |
|
||||
| consts.cpp:115:21:115:22 | *v2 | consts.cpp:116:9:116:13 | *access to array | provenance | |
|
||||
| consts.cpp:115:21:115:22 | *v2 | consts.cpp:120:2:120:11 | *... = ... | provenance | |
|
||||
| consts.cpp:115:17:115:18 | *v1 | consts.cpp:115:21:115:22 | *{...} | provenance | |
|
||||
| consts.cpp:115:21:115:22 | *{...} | consts.cpp:116:9:116:13 | *access to array | provenance | |
|
||||
| consts.cpp:115:21:115:22 | *{...} | consts.cpp:120:2:120:11 | *... = ... | provenance | |
|
||||
| consts.cpp:120:2:120:11 | *... = ... | consts.cpp:121:9:121:10 | *v8 | provenance | |
|
||||
| consts.cpp:123:2:123:12 | *... = ... | consts.cpp:24:7:24:9 | **gv1 | provenance | |
|
||||
| consts.cpp:129:19:129:20 | *v1 | consts.cpp:130:9:130:10 | *v9 | provenance | |
|
||||
@@ -39,7 +39,7 @@ edges
|
||||
nodes
|
||||
| consts.cpp:24:7:24:9 | **gv1 | semmle.label | **gv1 |
|
||||
| consts.cpp:25:2:25:4 | *a | semmle.label | *a |
|
||||
| consts.cpp:26:2:26:4 | *b | semmle.label | *b |
|
||||
| consts.cpp:26:2:26:4 | *{...} | semmle.label | *{...} |
|
||||
| consts.cpp:29:7:29:25 | **nonConstFuncToArray | semmle.label | **nonConstFuncToArray |
|
||||
| consts.cpp:30:9:30:14 | *access to array | semmle.label | *access to array |
|
||||
| consts.cpp:85:7:85:8 | gets output argument | semmle.label | gets output argument |
|
||||
@@ -60,7 +60,7 @@ nodes
|
||||
| consts.cpp:111:7:111:13 | *call to varFunc | semmle.label | *call to varFunc |
|
||||
| consts.cpp:112:9:112:10 | *v6 | semmle.label | *v6 |
|
||||
| consts.cpp:115:17:115:18 | *v1 | semmle.label | *v1 |
|
||||
| consts.cpp:115:21:115:22 | *v2 | semmle.label | *v2 |
|
||||
| consts.cpp:115:21:115:22 | *{...} | semmle.label | *{...} |
|
||||
| consts.cpp:116:9:116:13 | *access to array | semmle.label | *access to array |
|
||||
| consts.cpp:120:2:120:11 | *... = ... | semmle.label | *... = ... |
|
||||
| consts.cpp:121:9:121:10 | *v8 | semmle.label | *v8 |
|
||||
|
||||
@@ -6,8 +6,8 @@ edges
|
||||
| test.cpp:28:10:28:29 | *http://example.com | test.cpp:11:26:11:28 | *url | provenance | |
|
||||
| test.cpp:35:23:35:42 | *http://example.com | test.cpp:35:23:35:42 | *http://example.com | provenance | |
|
||||
| test.cpp:35:23:35:42 | *http://example.com | test.cpp:39:11:39:15 | *url_l | provenance | |
|
||||
| test.cpp:36:26:36:45 | *http://example.com | test.cpp:36:26:36:45 | *http://example.com | provenance | |
|
||||
| test.cpp:36:26:36:45 | *http://example.com | test.cpp:40:11:40:17 | *access to array | provenance | |
|
||||
| test.cpp:36:26:36:45 | *http://example.com | test.cpp:36:26:36:45 | *{...} | provenance | |
|
||||
| test.cpp:36:26:36:45 | *{...} | test.cpp:40:11:40:17 | *access to array | provenance | |
|
||||
| test.cpp:38:11:38:15 | *url_g | test.cpp:11:26:11:28 | *url | provenance | |
|
||||
| test.cpp:39:11:39:15 | *url_l | test.cpp:11:26:11:28 | *url | provenance | |
|
||||
| test.cpp:40:11:40:17 | *access to array | test.cpp:11:26:11:28 | *url | provenance | |
|
||||
@@ -29,7 +29,7 @@ nodes
|
||||
| test.cpp:35:23:35:42 | *http://example.com | semmle.label | *http://example.com |
|
||||
| test.cpp:35:23:35:42 | *http://example.com | semmle.label | *http://example.com |
|
||||
| test.cpp:36:26:36:45 | *http://example.com | semmle.label | *http://example.com |
|
||||
| test.cpp:36:26:36:45 | *http://example.com | semmle.label | *http://example.com |
|
||||
| test.cpp:36:26:36:45 | *{...} | semmle.label | *{...} |
|
||||
| test.cpp:38:11:38:15 | *url_g | semmle.label | *url_g |
|
||||
| test.cpp:39:11:39:15 | *url_l | semmle.label | *url_l |
|
||||
| test.cpp:40:11:40:17 | *access to array | semmle.label | *access to array |
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "9.0.100"
|
||||
"version": "9.0.300"
|
||||
}
|
||||
}
|
||||
@@ -3,8 +3,8 @@
|
||||
| BlazorTest/Components/Pages/TestPage.razor:11:48:11:55 | access to property UrlParam | BlazorTest/Components/Pages/TestPage.razor:11:48:11:55 | access to property UrlParam | BlazorTest/Components/Pages/TestPage.razor:11:48:11:55 | access to property UrlParam | $@ flows to here and is written to HTML or JavaScript. | BlazorTest/Components/Pages/TestPage.razor:11:48:11:55 | access to property UrlParam | User-provided value |
|
||||
| BlazorTest/Components/Pages/TestPage.razor:20:60:20:69 | access to property QueryParam | BlazorTest/Components/Pages/TestPage.razor:20:60:20:69 | access to property QueryParam | BlazorTest/Components/Pages/TestPage.razor:20:60:20:69 | access to property QueryParam | $@ flows to here and is written to HTML or JavaScript. | BlazorTest/Components/Pages/TestPage.razor:20:60:20:69 | access to property QueryParam | User-provided value |
|
||||
edges
|
||||
| BlazorTest/Components/Pages/TestPage.razor:85:23:85:32 | access to property QueryParam : String | test-db/working/razor/AC613014E59A413B9538FF8068364499/Microsoft.CodeAnalysis.Razor.Compiler/Microsoft.NET.Sdk.Razor.SourceGenerators.RazorSourceGenerator/Components_Pages_TestPage_razor.g.cs:569:16:577:13 | call to method TypeCheck<String> : String | provenance | Src:MaD:2 MaD:3 |
|
||||
| test-db/working/razor/AC613014E59A413B9538FF8068364499/Microsoft.CodeAnalysis.Razor.Compiler/Microsoft.NET.Sdk.Razor.SourceGenerators.RazorSourceGenerator/Components_Pages_TestPage_razor.g.cs:569:16:577:13 | call to method TypeCheck<String> : String | BlazorTest/Components/MyOutput.razor:5:53:5:57 | access to property Value | provenance | Sink:MaD:1 |
|
||||
| BlazorTest/Components/Pages/TestPage.razor:85:23:85:32 | access to property QueryParam : String | test-db/working/razor/AC613014E59A413B9538FF8068364499/Microsoft.CodeAnalysis.Razor.Compiler/Microsoft.NET.Sdk.Razor.SourceGenerators.RazorSourceGenerator/Components_Pages_TestPage_razor.g.cs:553:16:561:13 | call to method TypeCheck<String> : String | provenance | Src:MaD:2 MaD:3 |
|
||||
| test-db/working/razor/AC613014E59A413B9538FF8068364499/Microsoft.CodeAnalysis.Razor.Compiler/Microsoft.NET.Sdk.Razor.SourceGenerators.RazorSourceGenerator/Components_Pages_TestPage_razor.g.cs:553:16:561:13 | call to method TypeCheck<String> : String | BlazorTest/Components/MyOutput.razor:5:53:5:57 | access to property Value | provenance | Sink:MaD:1 |
|
||||
models
|
||||
| 1 | Sink: Microsoft.AspNetCore.Components; MarkupString; false; MarkupString; (System.String); ; Argument[0]; html-injection; manual |
|
||||
| 2 | Source: Microsoft.AspNetCore.Components; SupplyParameterFromQueryAttribute; false; ; ; Attribute.Getter; ReturnValue; remote; manual |
|
||||
@@ -14,5 +14,5 @@ nodes
|
||||
| BlazorTest/Components/Pages/TestPage.razor:11:48:11:55 | access to property UrlParam | semmle.label | access to property UrlParam |
|
||||
| BlazorTest/Components/Pages/TestPage.razor:20:60:20:69 | access to property QueryParam | semmle.label | access to property QueryParam |
|
||||
| BlazorTest/Components/Pages/TestPage.razor:85:23:85:32 | access to property QueryParam : String | semmle.label | access to property QueryParam : String |
|
||||
| test-db/working/razor/AC613014E59A413B9538FF8068364499/Microsoft.CodeAnalysis.Razor.Compiler/Microsoft.NET.Sdk.Razor.SourceGenerators.RazorSourceGenerator/Components_Pages_TestPage_razor.g.cs:569:16:577:13 | call to method TypeCheck<String> : String | semmle.label | call to method TypeCheck<String> : String |
|
||||
| test-db/working/razor/AC613014E59A413B9538FF8068364499/Microsoft.CodeAnalysis.Razor.Compiler/Microsoft.NET.Sdk.Razor.SourceGenerators.RazorSourceGenerator/Components_Pages_TestPage_razor.g.cs:553:16:561:13 | call to method TypeCheck<String> : String | semmle.label | call to method TypeCheck<String> : String |
|
||||
subpaths
|
||||
|
||||
@@ -35,7 +35,7 @@ Bug Fixes
|
||||
GitHub Actions
|
||||
""""""""""""""
|
||||
|
||||
* The :code:`actions/unversioned-immutable-action` query will no longer report any alerts, since the Immutable Actions feature is not yet available for customer use. The query remains in the default Code Scanning suites for use internal to GitHub. Once the Immutable Actions feature is available, the query will be updated to report alerts again.
|
||||
* The :code:`actions/unversioned-immutable-action` query will no longer report any alerts, since the Immutable Actions feature is not yet available for customer use. The query has also been moved to the experimental folder and will not be used in code scanning unless it is explicitly added to a code scanning configuration. Once the Immutable Actions feature is available, the query will be updated to report alerts again.
|
||||
|
||||
Major Analysis Improvements
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
@@ -37,14 +37,6 @@ Bug Fixes
|
||||
Query Packs
|
||||
-----------
|
||||
|
||||
New Features
|
||||
~~~~~~~~~~~~
|
||||
|
||||
GitHub Actions
|
||||
""""""""""""""
|
||||
|
||||
* CodeQL and Copilot Autofix support for GitHub Actions is now Generally Available.
|
||||
|
||||
Bug Fixes
|
||||
~~~~~~~~~
|
||||
|
||||
@@ -87,6 +79,14 @@ Python
|
||||
|
||||
* The :code:`py/mixed-tuple-returns` query no longer flags instances where the tuple is passed into the function as an argument, as this led to too many false positives.
|
||||
|
||||
New Features
|
||||
~~~~~~~~~~~~
|
||||
|
||||
GitHub Actions
|
||||
""""""""""""""
|
||||
|
||||
* CodeQL and Copilot Autofix support for GitHub Actions is now Generally Available.
|
||||
|
||||
Language Libraries
|
||||
------------------
|
||||
|
||||
@@ -131,17 +131,17 @@ Ruby
|
||||
New Features
|
||||
~~~~~~~~~~~~
|
||||
|
||||
GitHub Actions
|
||||
""""""""""""""
|
||||
|
||||
* CodeQL and Copilot Autofix support for GitHub Actions is now Generally Available.
|
||||
|
||||
C/C++
|
||||
"""""
|
||||
|
||||
* Calling conventions explicitly specified on function declarations (:code:`__cdecl`, :code:`__stdcall`, :code:`__fastcall`, etc.) are now represented as specifiers of those declarations.
|
||||
* A new class :code:`CallingConventionSpecifier` extending the :code:`Specifier` class was introduced, which represents explicitly specified calling conventions.
|
||||
|
||||
GitHub Actions
|
||||
""""""""""""""
|
||||
|
||||
* CodeQL and Copilot Autofix support for GitHub Actions is now Generally Available.
|
||||
|
||||
Shared Libraries
|
||||
----------------
|
||||
|
||||
|
||||
@@ -0,0 +1,159 @@
|
||||
.. _codeql-cli-2.21.3:
|
||||
|
||||
==========================
|
||||
CodeQL 2.21.3 (2025-05-15)
|
||||
==========================
|
||||
|
||||
.. contents:: Contents
|
||||
:depth: 2
|
||||
:local:
|
||||
:backlinks: none
|
||||
|
||||
This is an overview of changes in the CodeQL CLI and relevant CodeQL query and library packs. For additional updates on changes to the CodeQL code scanning experience, check out the `code scanning section on the GitHub blog <https://github.blog/tag/code-scanning/>`__, `relevant GitHub Changelog updates <https://github.blog/changelog/label/code-scanning/>`__, `changes in the CodeQL extension for Visual Studio Code <https://marketplace.visualstudio.com/items/GitHub.vscode-codeql/changelog>`__, and the `CodeQL Action changelog <https://github.com/github/codeql-action/blob/main/CHANGELOG.md>`__.
|
||||
|
||||
Security Coverage
|
||||
-----------------
|
||||
|
||||
CodeQL 2.21.3 runs a total of 452 security queries when configured with the Default suite (covering 168 CWE). The Extended suite enables an additional 136 queries (covering 35 more CWE).
|
||||
|
||||
CodeQL CLI
|
||||
----------
|
||||
|
||||
Miscellaneous
|
||||
~~~~~~~~~~~~~
|
||||
|
||||
* Windows binaries for the CodeQL CLI are now built with :code:`/guard:cf`, enabling `Control Flow Guard <https://learn.microsoft.com/en-us/windows/win32/secbp/control-flow-guard>`__.
|
||||
|
||||
Query Packs
|
||||
-----------
|
||||
|
||||
Minor Analysis Improvements
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
C#
|
||||
""
|
||||
|
||||
* Changed the precision of the :code:`cs/equality-on-floats` query from medium to high.
|
||||
|
||||
JavaScript/TypeScript
|
||||
"""""""""""""""""""""
|
||||
|
||||
* Type information is now propagated more precisely through :code:`Promise.all()` calls,
|
||||
leading to more resolved calls and more sources and sinks being detected.
|
||||
|
||||
Query Metadata Changes
|
||||
~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
C/C++
|
||||
"""""
|
||||
|
||||
* The tag :code:`external/cwe/cwe-14` has been removed from :code:`cpp/memset-may-be-deleted` and the tag :code:`external/cwe/cwe-014` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`cpp/count-untrusted-data-external-api` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`cpp/count-untrusted-data-external-api-ir` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`cpp/untrusted-data-to-external-api-ir` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`cpp/untrusted-data-to-external-api` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`cpp/late-check-of-function-argument` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
|
||||
C#
|
||||
""
|
||||
|
||||
* The tag :code:`external/cwe/cwe-13` has been removed from :code:`cs/password-in-configuration` and the tag :code:`external/cwe/cwe-013` has been added.
|
||||
* The tag :code:`external/cwe/cwe-11` has been removed from :code:`cs/web/debug-binary` and the tag :code:`external/cwe/cwe-011` has been added.
|
||||
* The tag :code:`external/cwe/cwe-16` has been removed from :code:`cs/web/large-max-request-length` and the tag :code:`external/cwe/cwe-016` has been added.
|
||||
* The tag :code:`external/cwe/cwe-16` has been removed from :code:`cs/web/request-validation-disabled` and the tag :code:`external/cwe/cwe-016` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`cs/count-untrusted-data-external-api` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`cs/serialization-check-bypass` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`cs/untrusted-data-to-external-api` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-12` has been removed from :code:`cs/web/missing-global-error-handler` and the tag :code:`external/cwe/cwe-012` has been added.
|
||||
|
||||
Golang
|
||||
""""""
|
||||
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`go/count-untrusted-data-external-api` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`go/incomplete-hostname-regexp` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`go/regex/missing-regexp-anchor` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`go/suspicious-character-in-regex` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`go/untrusted-data-to-external-api` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`go/untrusted-data-to-unknown-external-api` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-90` has been removed from :code:`go/ldap-injection` and the tag :code:`external/cwe/cwe-090` has been added.
|
||||
* The tag :code:`external/cwe/cwe-74` has been removed from :code:`go/dsn-injection` and the tag :code:`external/cwe/cwe-074` has been added.
|
||||
* The tag :code:`external/cwe/cwe-74` has been removed from :code:`go/dsn-injection-local` and the tag :code:`external/cwe/cwe-074` has been added.
|
||||
* The tag :code:`external/cwe/cwe-79` has been removed from :code:`go/html-template-escaping-passthrough` and the tag :code:`external/cwe/cwe-079` has been added.
|
||||
|
||||
Java/Kotlin
|
||||
"""""""""""
|
||||
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`java/count-untrusted-data-external-api` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`java/untrusted-data-to-external-api` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-93` has been removed from :code:`java/netty-http-request-or-response-splitting` and the tag :code:`external/cwe/cwe-093` has been added.
|
||||
|
||||
JavaScript/TypeScript
|
||||
"""""""""""""""""""""
|
||||
|
||||
* The tag :code:`external/cwe/cwe-79` has been removed from :code:`js/disabling-electron-websecurity` and the tag :code:`external/cwe/cwe-079` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`js/count-untrusted-data-external-api` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`js/untrusted-data-to-external-api` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`js/untrusted-data-to-external-api-more-sources` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
|
||||
Python
|
||||
""""""
|
||||
|
||||
* The tags :code:`security/cwe/cwe-94` and :code:`security/cwe/cwe-95` have been removed from :code:`py/use-of-input` and the tags :code:`external/cwe/cwe-094` and :code:`external/cwe/cwe-095` have been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`py/count-untrusted-data-external-api` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`py/untrusted-data-to-external-api` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`py/cookie-injection` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-20` has been removed from :code:`py/incomplete-url-substring-sanitization` and the tag :code:`external/cwe/cwe-020` has been added.
|
||||
* The tag :code:`external/cwe/cwe-94` has been removed from :code:`py/js2py-rce` and the tag :code:`external/cwe/cwe-094` has been added.
|
||||
|
||||
Ruby
|
||||
""""
|
||||
|
||||
* The precision of :code:`rb/useless-assignment-to-local` has been adjusted from :code:`medium` to :code:`high`.
|
||||
* The tag :code:`external/cwe/cwe-94` has been removed from :code:`rb/server-side-template-injection` and the tag :code:`external/cwe/cwe-094` has been added.
|
||||
|
||||
Language Libraries
|
||||
------------------
|
||||
|
||||
Bug Fixes
|
||||
~~~~~~~~~
|
||||
|
||||
C/C++
|
||||
"""""
|
||||
|
||||
* Fixed an infinite loop in :code:`semmle.code.cpp.rangeanalysis.new.RangeAnalysis` when computing ranges in very large and complex function bodies.
|
||||
|
||||
Minor Analysis Improvements
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
JavaScript/TypeScript
|
||||
"""""""""""""""""""""
|
||||
|
||||
* Enhanced modeling of the `fastify <https://www.npmjs.com/package/fastify>`__ framework to support the :code:`all` route handler method.
|
||||
* Improved modeling of the |link-code-shelljs-1|_ and |link-code-async-shelljs-2|_ libraries by adding support for the :code:`which`, :code:`cmd`, :code:`asyncExec` and :code:`env`.
|
||||
* Added support for the :code:`fastify` :code:`addHook` method.
|
||||
|
||||
Python
|
||||
""""""
|
||||
|
||||
* Added modeling for the :code:`hdbcli` PyPI package as a database library implementing PEP 249.
|
||||
* Added header write model for :code:`send_header` in :code:`http.server`.
|
||||
|
||||
New Features
|
||||
~~~~~~~~~~~~
|
||||
|
||||
Java/Kotlin
|
||||
"""""""""""
|
||||
|
||||
* Kotlin versions up to 2.2.0\ *x* are now supported. Support for the Kotlin 1.5.x series is dropped (so the minimum Kotlin version is now 1.6.0).
|
||||
|
||||
Swift
|
||||
"""""
|
||||
|
||||
* Added AST nodes :code:`UnsafeCastExpr`, :code:`TypeValueExpr`, :code:`IntegerType`, and :code:`BuiltinFixedArrayType` that correspond to new nodes added by Swift 6.1.
|
||||
|
||||
.. |link-code-shelljs-1| replace:: :code:`shelljs`\
|
||||
.. _link-code-shelljs-1: https://www.npmjs.com/package/shelljs
|
||||
|
||||
.. |link-code-async-shelljs-2| replace:: :code:`async-shelljs`\
|
||||
.. _link-code-async-shelljs-2: https://www.npmjs.com/package/async-shelljs
|
||||
|
||||
@@ -11,6 +11,7 @@ A list of queries for each suite and language `is available here <https://docs.g
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
codeql-cli-2.21.3
|
||||
codeql-cli-2.21.2
|
||||
codeql-cli-2.21.1
|
||||
codeql-cli-2.21.0
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
JavaScript,ECMAScript 2022 or lower,Not applicable,"``.js``, ``.jsx``, ``.mjs``, ``.es``, ``.es6``, ``.htm``, ``.html``, ``.xhtm``, ``.xhtml``, ``.vue``, ``.hbs``, ``.ejs``, ``.njk``, ``.json``, ``.yaml``, ``.yml``, ``.raml``, ``.xml`` [8]_"
|
||||
Python [9]_,"2.7, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, 3.13",Not applicable,``.py``
|
||||
Ruby [10]_,"up to 3.3",Not applicable,"``.rb``, ``.erb``, ``.gemspec``, ``Gemfile``"
|
||||
Swift [11]_,"Swift 5.4-6.0","Swift compiler","``.swift``"
|
||||
Swift [11]_,"Swift 5.4-6.1","Swift compiler","``.swift``"
|
||||
TypeScript [12]_,"2.6-5.8",Standard TypeScript compiler,"``.ts``, ``.tsx``, ``.mts``, ``.cts``"
|
||||
|
||||
.. container:: footnote-group
|
||||
|
||||
@@ -30,10 +30,6 @@ No user-facing changes.
|
||||
|
||||
* The member predicate `hasLocationInfo` has been deprecated on the following classes: `BasicBlock`, `Callable`, `Content`, `ContentSet`, `ControlFlow::Node`, `DataFlowCallable`, `DataFlow::Node`, `Entity`, `GVN`, `HtmlTemplate::TemplateStmt`, `IR:WriteTarget`, `SourceSinkInterpretationInput::SourceOrSinkElement`, `SourceSinkInterpretationInput::InterpretNode`, `SsaVariable`, `SsaDefinition`, `SsaWithFields`, `StringOps::ConcatenationElement`, `Type`, and `VariableWithFields`. Use `getLocation()` instead.
|
||||
|
||||
### Major Analysis Improvements
|
||||
|
||||
* Go 1.24 is now supported. This includes the new language feature of generic type aliases.
|
||||
|
||||
### Minor Analysis Improvements
|
||||
|
||||
* The location info for the following classes has been changed slightly to match a location that is in the database: `BasicBlock`, `ControlFlow::EntryNode`, `ControlFlow::ExitNode`, `ControlFlow::ConditionGuardNode`, `IR::ImplicitLiteralElementIndexInstruction`, `IR::EvalImplicitTrueInstruction`, `SsaImplicitDefinition`, `SsaPhiNode`.
|
||||
@@ -48,6 +44,10 @@ No user-facing changes.
|
||||
* The member predicate `getNamedType` on `GoMicro::ServiceInterfaceType` has been deprecated. Use the new member predicate `getDefinedType` instead.
|
||||
* The member predicate `getNamedType` on `Twirp::ServiceInterfaceType` has been deprecated. Use the new member predicate `getDefinedType` instead.
|
||||
|
||||
### Major Analysis Improvements
|
||||
|
||||
* Go 1.24 is now supported. This includes the new language feature of generic type aliases.
|
||||
|
||||
### Minor Analysis Improvements
|
||||
|
||||
* Taint models have been added for the `weak` package, which was added in Go 1.24.
|
||||
|
||||
@@ -6,6 +6,10 @@
|
||||
* The member predicate `getNamedType` on `GoMicro::ServiceInterfaceType` has been deprecated. Use the new member predicate `getDefinedType` instead.
|
||||
* The member predicate `getNamedType` on `Twirp::ServiceInterfaceType` has been deprecated. Use the new member predicate `getDefinedType` instead.
|
||||
|
||||
### Major Analysis Improvements
|
||||
|
||||
* Go 1.24 is now supported. This includes the new language feature of generic type aliases.
|
||||
|
||||
### Minor Analysis Improvements
|
||||
|
||||
* Taint models have been added for the `weak` package, which was added in Go 1.24.
|
||||
|
||||
@@ -4,10 +4,6 @@
|
||||
|
||||
* The member predicate `hasLocationInfo` has been deprecated on the following classes: `BasicBlock`, `Callable`, `Content`, `ContentSet`, `ControlFlow::Node`, `DataFlowCallable`, `DataFlow::Node`, `Entity`, `GVN`, `HtmlTemplate::TemplateStmt`, `IR:WriteTarget`, `SourceSinkInterpretationInput::SourceOrSinkElement`, `SourceSinkInterpretationInput::InterpretNode`, `SsaVariable`, `SsaDefinition`, `SsaWithFields`, `StringOps::ConcatenationElement`, `Type`, and `VariableWithFields`. Use `getLocation()` instead.
|
||||
|
||||
### Major Analysis Improvements
|
||||
|
||||
* Go 1.24 is now supported. This includes the new language feature of generic type aliases.
|
||||
|
||||
### Minor Analysis Improvements
|
||||
|
||||
* The location info for the following classes has been changed slightly to match a location that is in the database: `BasicBlock`, `ControlFlow::EntryNode`, `ControlFlow::ExitNode`, `ControlFlow::ConditionGuardNode`, `IR::ImplicitLiteralElementIndexInstruction`, `IR::EvalImplicitTrueInstruction`, `SsaImplicitDefinition`, `SsaPhiNode`.
|
||||
|
||||
@@ -20,7 +20,7 @@ No user-facing changes.
|
||||
### Minor Analysis Improvements
|
||||
|
||||
* Java extraction is now able to download Maven 3.9.x if a Maven Enforcer Plugin configuration indicates it is necessary. Maven 3.8.x is still preferred if the enforcer-plugin configuration (if any) permits it.
|
||||
* Added a path injection sanitizer for calls to `java.lang.String.matches`, `java.lang.String.replace`, and `java.lang.String.replaceAll` that make sure '/', '\', '..' are not in the path.
|
||||
* Added a path injection sanitizer for calls to `java.lang.String.matches`, `java.lang.String.replace`, and `java.lang.String.replaceAll` that make sure `/`, `\\`, `..` are not in the path.
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
@@ -55,8 +55,8 @@ No user-facing changes.
|
||||
* Deleted the deprecated `isLValue` and `isRValue` predicates from the `VarAccess` class, use `isVarWrite` and `isVarRead` respectively instead.
|
||||
* Deleted the deprecated `getRhs` predicate from the `VarWrite` class, use `getASource` instead.
|
||||
* Deleted the deprecated `LValue` and `RValue` classes, use `VarWrite` and `VarRead` respectively instead.
|
||||
* Deleted a lot of deprecated classes ending in "*Access", use the corresponding "*Call" classes instead.
|
||||
* Deleted a lot of deprecated predicates ending in "*Access", use the corresponding "*Call" predicates instead.
|
||||
* Deleted a lot of deprecated classes ending in `*Access`, use the corresponding `*Call` classes instead.
|
||||
* Deleted a lot of deprecated predicates ending in `*Access`, use the corresponding `*Call` predicates instead.
|
||||
* Deleted the deprecated `EnvInput` and `DatabaseInput` classes from `FlowSources.qll`, use the threat models feature instead.
|
||||
* Deleted some deprecated API predicates from `SensitiveApi.qll`, use the Sink classes from that file instead.
|
||||
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
* Deleted the deprecated `isLValue` and `isRValue` predicates from the `VarAccess` class, use `isVarWrite` and `isVarRead` respectively instead.
|
||||
* Deleted the deprecated `getRhs` predicate from the `VarWrite` class, use `getASource` instead.
|
||||
* Deleted the deprecated `LValue` and `RValue` classes, use `VarWrite` and `VarRead` respectively instead.
|
||||
* Deleted a lot of deprecated classes ending in "*Access", use the corresponding "*Call" classes instead.
|
||||
* Deleted a lot of deprecated predicates ending in "*Access", use the corresponding "*Call" predicates instead.
|
||||
* Deleted a lot of deprecated classes ending in `*Access`, use the corresponding `*Call` classes instead.
|
||||
* Deleted a lot of deprecated predicates ending in `*Access`, use the corresponding `*Call` predicates instead.
|
||||
* Deleted the deprecated `EnvInput` and `DatabaseInput` classes from `FlowSources.qll`, use the threat models feature instead.
|
||||
* Deleted some deprecated API predicates from `SensitiveApi.qll`, use the Sink classes from that file instead.
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
### Minor Analysis Improvements
|
||||
|
||||
* Java extraction is now able to download Maven 3.9.x if a Maven Enforcer Plugin configuration indicates it is necessary. Maven 3.8.x is still preferred if the enforcer-plugin configuration (if any) permits it.
|
||||
* Added a path injection sanitizer for calls to `java.lang.String.matches`, `java.lang.String.replace`, and `java.lang.String.replaceAll` that make sure '/', '\', '..' are not in the path.
|
||||
* Added a path injection sanitizer for calls to `java.lang.String.matches`, `java.lang.String.replace`, and `java.lang.String.replaceAll` that make sure `/`, `\\`, `..` are not in the path.
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
|
||||
@@ -1606,13 +1606,8 @@ module JCAModel {
|
||||
else result = Crypto::OtherEllipticCurveType()
|
||||
}
|
||||
|
||||
override string getKeySize() {
|
||||
exists(int keySize |
|
||||
Crypto::ellipticCurveNameToKeySizeAndFamilyMapping(this.getRawEllipticCurveName(), keySize,
|
||||
_)
|
||||
|
|
||||
result = keySize.toString()
|
||||
)
|
||||
override int getKeySize() {
|
||||
Crypto::ellipticCurveNameToKeySizeAndFamilyMapping(this.getRawEllipticCurveName(), result, _)
|
||||
}
|
||||
|
||||
EllipticCurveAlgorithmValueConsumer getConsumer() { result = consumer }
|
||||
|
||||
335
misc/scripts/models-as-data/rust_bulk_generate_mad.py
Normal file
335
misc/scripts/models-as-data/rust_bulk_generate_mad.py
Normal file
@@ -0,0 +1,335 @@
|
||||
"""
|
||||
Experimental script for bulk generation of MaD models based on a list of projects.
|
||||
|
||||
Currently the script only targets Rust.
|
||||
"""
|
||||
|
||||
import os.path
|
||||
import subprocess
|
||||
import sys
|
||||
from typing import NotRequired, TypedDict, List
|
||||
from concurrent.futures import ThreadPoolExecutor, as_completed
|
||||
import time
|
||||
|
||||
import generate_mad as mad
|
||||
|
||||
gitroot = (
|
||||
subprocess.check_output(["git", "rev-parse", "--show-toplevel"])
|
||||
.decode("utf-8")
|
||||
.strip()
|
||||
)
|
||||
build_dir = os.path.join(gitroot, "mad-generation-build")
|
||||
|
||||
|
||||
def path_to_mad_directory(language: str, name: str) -> str:
|
||||
return os.path.join(gitroot, f"{language}/ql/lib/ext/generated/{name}")
|
||||
|
||||
|
||||
# A project to generate models for
|
||||
class Project(TypedDict):
|
||||
"""
|
||||
Type definition for Rust projects to model.
|
||||
|
||||
Attributes:
|
||||
name: The name of the project
|
||||
git_repo: URL to the git repository
|
||||
git_tag: Optional Git tag to check out
|
||||
"""
|
||||
|
||||
name: str
|
||||
git_repo: str
|
||||
git_tag: NotRequired[str]
|
||||
|
||||
|
||||
# List of Rust projects to generate models for.
|
||||
projects: List[Project] = [
|
||||
{
|
||||
"name": "libc",
|
||||
"git_repo": "https://github.com/rust-lang/libc",
|
||||
"git_tag": "0.2.172",
|
||||
},
|
||||
{
|
||||
"name": "log",
|
||||
"git_repo": "https://github.com/rust-lang/log",
|
||||
"git_tag": "0.4.27",
|
||||
},
|
||||
{
|
||||
"name": "memchr",
|
||||
"git_repo": "https://github.com/BurntSushi/memchr",
|
||||
"git_tag": "2.7.4",
|
||||
},
|
||||
{
|
||||
"name": "once_cell",
|
||||
"git_repo": "https://github.com/matklad/once_cell",
|
||||
"git_tag": "v1.21.3",
|
||||
},
|
||||
{
|
||||
"name": "rand",
|
||||
"git_repo": "https://github.com/rust-random/rand",
|
||||
"git_tag": "0.9.1",
|
||||
},
|
||||
{
|
||||
"name": "smallvec",
|
||||
"git_repo": "https://github.com/servo/rust-smallvec",
|
||||
"git_tag": "v1.15.0",
|
||||
},
|
||||
{
|
||||
"name": "serde",
|
||||
"git_repo": "https://github.com/serde-rs/serde",
|
||||
"git_tag": "v1.0.219",
|
||||
},
|
||||
{
|
||||
"name": "tokio",
|
||||
"git_repo": "https://github.com/tokio-rs/tokio",
|
||||
"git_tag": "tokio-1.45.0",
|
||||
},
|
||||
{
|
||||
"name": "reqwest",
|
||||
"git_repo": "https://github.com/seanmonstar/reqwest",
|
||||
"git_tag": "v0.12.15",
|
||||
},
|
||||
{
|
||||
"name": "rocket",
|
||||
"git_repo": "https://github.com/SergioBenitez/Rocket",
|
||||
"git_tag": "v0.5.1",
|
||||
},
|
||||
{
|
||||
"name": "actix-web",
|
||||
"git_repo": "https://github.com/actix/actix-web",
|
||||
"git_tag": "web-v4.11.0",
|
||||
},
|
||||
{
|
||||
"name": "hyper",
|
||||
"git_repo": "https://github.com/hyperium/hyper",
|
||||
"git_tag": "v1.6.0",
|
||||
},
|
||||
{
|
||||
"name": "clap",
|
||||
"git_repo": "https://github.com/clap-rs/clap",
|
||||
"git_tag": "v4.5.38",
|
||||
},
|
||||
]
|
||||
|
||||
|
||||
def clone_project(project: Project) -> str:
|
||||
"""
|
||||
Shallow clone a project into the build directory.
|
||||
|
||||
Args:
|
||||
project: A dictionary containing project information with 'name', 'git_repo', and optional 'git_tag' keys.
|
||||
|
||||
Returns:
|
||||
The path to the cloned project directory.
|
||||
"""
|
||||
name = project["name"]
|
||||
repo_url = project["git_repo"]
|
||||
git_tag = project.get("git_tag")
|
||||
|
||||
# Determine target directory
|
||||
target_dir = os.path.join(build_dir, name)
|
||||
|
||||
# Clone only if directory doesn't already exist
|
||||
if not os.path.exists(target_dir):
|
||||
if git_tag:
|
||||
print(f"Cloning {name} from {repo_url} at tag {git_tag}")
|
||||
else:
|
||||
print(f"Cloning {name} from {repo_url}")
|
||||
|
||||
subprocess.check_call(
|
||||
[
|
||||
"git",
|
||||
"clone",
|
||||
"--quiet",
|
||||
"--depth",
|
||||
"1", # Shallow clone
|
||||
*(
|
||||
["--branch", git_tag] if git_tag else []
|
||||
), # Add branch if tag is provided
|
||||
repo_url,
|
||||
target_dir,
|
||||
]
|
||||
)
|
||||
print(f"Completed cloning {name}")
|
||||
else:
|
||||
print(f"Skipping cloning {name} as it already exists at {target_dir}")
|
||||
|
||||
return target_dir
|
||||
|
||||
|
||||
def clone_projects(projects: List[Project]) -> List[tuple[Project, str]]:
|
||||
"""
|
||||
Clone all projects in parallel.
|
||||
|
||||
Args:
|
||||
projects: List of projects to clone
|
||||
|
||||
Returns:
|
||||
List of (project, project_dir) pairs in the same order as the input projects
|
||||
"""
|
||||
start_time = time.time()
|
||||
max_workers = min(8, len(projects)) # Use at most 8 threads
|
||||
project_dirs_map = {} # Map to store results by project name
|
||||
|
||||
with ThreadPoolExecutor(max_workers=max_workers) as executor:
|
||||
# Start cloning tasks and keep track of them
|
||||
future_to_project = {
|
||||
executor.submit(clone_project, project): project for project in projects
|
||||
}
|
||||
|
||||
# Process results as they complete
|
||||
for future in as_completed(future_to_project):
|
||||
project = future_to_project[future]
|
||||
try:
|
||||
project_dir = future.result()
|
||||
project_dirs_map[project["name"]] = (project, project_dir)
|
||||
except Exception as e:
|
||||
print(f"ERROR: Failed to clone {project['name']}: {e}")
|
||||
|
||||
if len(project_dirs_map) != len(projects):
|
||||
failed_projects = [
|
||||
project["name"]
|
||||
for project in projects
|
||||
if project["name"] not in project_dirs_map
|
||||
]
|
||||
print(
|
||||
f"ERROR: Only {len(project_dirs_map)} out of {len(projects)} projects were cloned successfully. Failed projects: {', '.join(failed_projects)}"
|
||||
)
|
||||
sys.exit(1)
|
||||
|
||||
project_dirs = [project_dirs_map[project["name"]] for project in projects]
|
||||
|
||||
clone_time = time.time() - start_time
|
||||
print(f"Cloning completed in {clone_time:.2f} seconds")
|
||||
return project_dirs
|
||||
|
||||
|
||||
def build_database(project: Project, project_dir: str) -> str | None:
|
||||
"""
|
||||
Build a CodeQL database for a project.
|
||||
|
||||
Args:
|
||||
project: A dictionary containing project information with 'name' and 'git_repo' keys.
|
||||
project_dir: The directory containing the project source code.
|
||||
|
||||
Returns:
|
||||
The path to the created database directory.
|
||||
"""
|
||||
name = project["name"]
|
||||
|
||||
# Create database directory path
|
||||
database_dir = os.path.join(build_dir, f"{name}-db")
|
||||
|
||||
# Only build the database if it doesn't already exist
|
||||
if not os.path.exists(database_dir):
|
||||
print(f"Building CodeQL database for {name}...")
|
||||
try:
|
||||
subprocess.check_call(
|
||||
[
|
||||
"codeql",
|
||||
"database",
|
||||
"create",
|
||||
"--language=rust",
|
||||
"--source-root=" + project_dir,
|
||||
"--overwrite",
|
||||
"-O",
|
||||
"cargo_features='*'",
|
||||
"--",
|
||||
database_dir,
|
||||
]
|
||||
)
|
||||
print(f"Successfully created database at {database_dir}")
|
||||
except subprocess.CalledProcessError as e:
|
||||
print(f"Failed to create database for {name}: {e}")
|
||||
return None
|
||||
else:
|
||||
print(
|
||||
f"Skipping database creation for {name} as it already exists at {database_dir}"
|
||||
)
|
||||
|
||||
return database_dir
|
||||
|
||||
|
||||
def generate_models(project: Project, database_dir: str) -> None:
|
||||
"""
|
||||
Generate models for a project.
|
||||
|
||||
Args:
|
||||
project: A dictionary containing project information with 'name' and 'git_repo' keys.
|
||||
project_dir: The directory containing the project source code.
|
||||
"""
|
||||
name = project["name"]
|
||||
|
||||
generator = mad.Generator("rust")
|
||||
generator.generateSinks = True
|
||||
generator.generateSources = True
|
||||
generator.generateSummaries = True
|
||||
generator.setenvironment(database=database_dir, folder=name)
|
||||
generator.run()
|
||||
|
||||
|
||||
def main() -> None:
|
||||
"""
|
||||
Process all projects in three distinct phases:
|
||||
1. Clone projects (in parallel)
|
||||
2. Build databases for projects
|
||||
3. Generate models for successful database builds
|
||||
"""
|
||||
|
||||
# Create build directory if it doesn't exist
|
||||
if not os.path.exists(build_dir):
|
||||
os.makedirs(build_dir)
|
||||
|
||||
# Check if any of the MaD directories contain working directory changes in git
|
||||
for project in projects:
|
||||
mad_dir = path_to_mad_directory("rust", project["name"])
|
||||
if os.path.exists(mad_dir):
|
||||
git_status_output = subprocess.check_output(
|
||||
["git", "status", "-s", mad_dir], text=True
|
||||
).strip()
|
||||
if git_status_output:
|
||||
print(
|
||||
f"""ERROR: Working directory changes detected in {mad_dir}.
|
||||
|
||||
Before generating new models, the existing models are deleted.
|
||||
|
||||
To avoid loss of data, please commit your changes."""
|
||||
)
|
||||
sys.exit(1)
|
||||
|
||||
# Phase 1: Clone projects in parallel
|
||||
print("=== Phase 1: Cloning projects ===")
|
||||
project_dirs = clone_projects(projects)
|
||||
|
||||
# Phase 2: Build databases for all projects
|
||||
print("\n=== Phase 2: Building databases ===")
|
||||
database_results = [
|
||||
(project, build_database(project, project_dir))
|
||||
for project, project_dir in project_dirs
|
||||
]
|
||||
|
||||
# Phase 3: Generate models for all projects
|
||||
print("\n=== Phase 3: Generating models ===")
|
||||
|
||||
failed_builds = [
|
||||
project["name"] for project, db_dir in database_results if db_dir is None
|
||||
]
|
||||
if failed_builds:
|
||||
print(
|
||||
f"ERROR: {len(failed_builds)} database builds failed: {', '.join(failed_builds)}"
|
||||
)
|
||||
sys.exit(1)
|
||||
|
||||
# Delete the MaD directory for each project
|
||||
for project, database_dir in database_results:
|
||||
mad_dir = path_to_mad_directory("rust", project["name"])
|
||||
if os.path.exists(mad_dir):
|
||||
print(f"Deleting existing MaD directory at {mad_dir}")
|
||||
subprocess.check_call(["rm", "-rf", mad_dir])
|
||||
|
||||
for project, database_dir in database_results:
|
||||
if database_dir is not None:
|
||||
generate_models(project, database_dir)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
@@ -48,7 +48,7 @@ No user-facing changes.
|
||||
* Deleted the deprecated `ModelClass` and `ModelInstance` classes from `ActiveResource.qll`, use `ModelClassNode` and `ModelClassNode.getAnInstanceReference()` instead.
|
||||
* Deleted the deprecated `Collection` class from `ActiveResource.qll`, use `CollectionSource` instead.
|
||||
* Deleted the deprecated `ServiceInstantiation` and `ClientInstantiation` classes from `Twirp.qll`.
|
||||
* Deleted a lot of deprecated dataflow modules from "*Query.qll" files.
|
||||
* Deleted a lot of deprecated dataflow modules from `*Query.qll` files.
|
||||
* Deleted the old deprecated TypeTracking library.
|
||||
|
||||
## 3.0.2
|
||||
|
||||
@@ -14,5 +14,5 @@
|
||||
* Deleted the deprecated `ModelClass` and `ModelInstance` classes from `ActiveResource.qll`, use `ModelClassNode` and `ModelClassNode.getAnInstanceReference()` instead.
|
||||
* Deleted the deprecated `Collection` class from `ActiveResource.qll`, use `CollectionSource` instead.
|
||||
* Deleted the deprecated `ServiceInstantiation` and `ClientInstantiation` classes from `Twirp.qll`.
|
||||
* Deleted a lot of deprecated dataflow modules from "*Query.qll" files.
|
||||
* Deleted a lot of deprecated dataflow modules from `*Query.qll` files.
|
||||
* Deleted the old deprecated TypeTracking library.
|
||||
|
||||
@@ -54,6 +54,7 @@ path = "main.rs"
|
||||
fn set_sources(config: &mut Config) -> anyhow::Result<()> {
|
||||
let path_iterator = glob("**/*.rs").context("globbing test sources")?;
|
||||
config.inputs = path_iterator
|
||||
.filter(|f| f.is_err() || !f.as_ref().unwrap().starts_with("target"))
|
||||
.collect::<Result<Vec<_>, _>>()
|
||||
.context("fetching test sources")?;
|
||||
Ok(())
|
||||
|
||||
@@ -14,7 +14,13 @@ private import codeql.rust.internal.TypeInference
|
||||
* be referenced directly.
|
||||
*/
|
||||
module Impl {
|
||||
private predicate isImplFunction(Function f) { f = any(ImplItemNode impl).getAnAssocItem() }
|
||||
private predicate isInherentImplFunction(Function f) {
|
||||
f = any(Impl impl | not impl.hasTrait()).(ImplItemNode).getAnAssocItem()
|
||||
}
|
||||
|
||||
private predicate isTraitImplFunction(Function f) {
|
||||
f = any(Impl impl | impl.hasTrait()).(ImplItemNode).getAnAssocItem()
|
||||
}
|
||||
|
||||
// the following QLdoc is generated: if you need to edit it, do it in the schema file
|
||||
/**
|
||||
@@ -25,23 +31,39 @@ module Impl {
|
||||
* ```
|
||||
*/
|
||||
class MethodCallExpr extends Generated::MethodCallExpr {
|
||||
override Function getStaticTarget() {
|
||||
private Function getStaticTargetFrom(boolean fromSource) {
|
||||
result = resolveMethodCallExpr(this) and
|
||||
(if result.fromSource() then fromSource = true else fromSource = false) and
|
||||
(
|
||||
// prioritize `impl` methods first
|
||||
isImplFunction(result)
|
||||
// prioritize inherent implementation methods first
|
||||
isInherentImplFunction(result)
|
||||
or
|
||||
not isImplFunction(resolveMethodCallExpr(this)) and
|
||||
not isInherentImplFunction(resolveMethodCallExpr(this)) and
|
||||
(
|
||||
// then trait methods with default implementations
|
||||
result.hasBody()
|
||||
// then trait implementation methods
|
||||
isTraitImplFunction(result)
|
||||
or
|
||||
// and finally trait methods without default implementations
|
||||
not resolveMethodCallExpr(this).hasBody()
|
||||
not isTraitImplFunction(resolveMethodCallExpr(this)) and
|
||||
(
|
||||
// then trait methods with default implementations
|
||||
result.hasBody()
|
||||
or
|
||||
// and finally trait methods without default implementations
|
||||
not resolveMethodCallExpr(this).hasBody()
|
||||
)
|
||||
)
|
||||
)
|
||||
}
|
||||
|
||||
override Function getStaticTarget() {
|
||||
// Functions in source code also gets extracted as library code, due to
|
||||
// this duplication we prioritize functions from source code.
|
||||
result = this.getStaticTargetFrom(true)
|
||||
or
|
||||
not exists(this.getStaticTargetFrom(true)) and
|
||||
result = this.getStaticTargetFrom(false)
|
||||
}
|
||||
|
||||
private string toStringPart(int index) {
|
||||
index = 0 and
|
||||
result = this.getReceiver().toAbbreviatedString()
|
||||
|
||||
@@ -446,61 +446,6 @@ class ImplItemNode extends ImplOrTraitItemNode instanceof Impl {
|
||||
|
||||
TraitItemNode resolveTraitTy() { result = resolvePathFull(this.getTraitPath()) }
|
||||
|
||||
pragma[nomagic]
|
||||
private TypeRepr getASelfTyArg() {
|
||||
result =
|
||||
this.getSelfPath().getSegment().getGenericArgList().getAGenericArg().(TypeArg).getTypeRepr()
|
||||
}
|
||||
|
||||
/**
|
||||
* Holds if this `impl` block is not fully parametric. That is, the implementing
|
||||
* type is generic and the implementation is not parametrically polymorphic in all
|
||||
* the implementing type's arguments.
|
||||
*
|
||||
* Examples:
|
||||
*
|
||||
* ```rust
|
||||
* impl Foo { ... } // fully parametric
|
||||
*
|
||||
* impl<T> Foo<T> { ... } // fully parametric
|
||||
*
|
||||
* impl Foo<i64> { ... } // not fully parametric
|
||||
*
|
||||
* impl<T> Foo<Foo<T>> { ... } // not fully parametric
|
||||
*
|
||||
* impl<T: Trait> Foo<T> { ... } // not fully parametric
|
||||
*
|
||||
* impl<T> Foo<T> where T: Trait { ... } // not fully parametric
|
||||
* ```
|
||||
*/
|
||||
pragma[nomagic]
|
||||
predicate isNotFullyParametric() {
|
||||
exists(TypeRepr arg | arg = this.getASelfTyArg() |
|
||||
not exists(resolveTypeParamPathTypeRepr(arg))
|
||||
or
|
||||
resolveTypeParamPathTypeRepr(arg).hasTraitBound()
|
||||
)
|
||||
}
|
||||
|
||||
/**
|
||||
* Holds if this `impl` block is fully parametric. Examples:
|
||||
*
|
||||
* ```rust
|
||||
* impl Foo { ... } // fully parametric
|
||||
*
|
||||
* impl<T> Foo<T> { ... } // fully parametric
|
||||
*
|
||||
* impl Foo<i64> { ... } // not fully parametric
|
||||
*
|
||||
* impl<T> Foo<Foo<T>> { ... } // not fully parametric
|
||||
*
|
||||
* impl<T: Trait> Foo<T> { ... } // not fully parametric
|
||||
*
|
||||
* impl<T> Foo<T> where T: Trait { ... } // not fully parametric
|
||||
* ```
|
||||
*/
|
||||
predicate isFullyParametric() { not this.isNotFullyParametric() }
|
||||
|
||||
override AssocItemNode getAnAssocItem() { result = super.getAssocItemList().getAnAssocItem() }
|
||||
|
||||
override string getName() { result = "(impl)" }
|
||||
|
||||
@@ -27,10 +27,6 @@ newtype TType =
|
||||
* types, such as traits and implementation blocks.
|
||||
*/
|
||||
abstract class Type extends TType {
|
||||
/** Gets the method `name` belonging to this type, if any. */
|
||||
pragma[nomagic]
|
||||
abstract Function getMethod(string name);
|
||||
|
||||
/** Gets the struct field `name` belonging to this type, if any. */
|
||||
pragma[nomagic]
|
||||
abstract StructField getStructField(string name);
|
||||
@@ -45,25 +41,6 @@ abstract class Type extends TType {
|
||||
/** Gets a type parameter of this type. */
|
||||
final TypeParameter getATypeParameter() { result = this.getTypeParameter(_) }
|
||||
|
||||
/**
|
||||
* Gets an AST node that mentions a base type of this type, if any.
|
||||
*
|
||||
* Although Rust doesn't have traditional OOP-style inheritance, we model trait
|
||||
* bounds and `impl` blocks as base types. Example:
|
||||
*
|
||||
* ```rust
|
||||
* trait T1 {}
|
||||
*
|
||||
* trait T2 {}
|
||||
*
|
||||
* trait T3 : T1, T2 {}
|
||||
* // ^^ `this`
|
||||
* // ^^ `result`
|
||||
* // ^^ `result`
|
||||
* ```
|
||||
*/
|
||||
abstract TypeMention getABaseTypeMention();
|
||||
|
||||
/** Gets a textual representation of this type. */
|
||||
abstract string toString();
|
||||
|
||||
@@ -73,21 +50,6 @@ abstract class Type extends TType {
|
||||
|
||||
abstract private class StructOrEnumType extends Type {
|
||||
abstract ItemNode asItemNode();
|
||||
|
||||
final override Function getMethod(string name) {
|
||||
result = this.asItemNode().getASuccessor(name) and
|
||||
exists(ImplOrTraitItemNode impl | result = impl.getAnAssocItem() |
|
||||
impl instanceof Trait
|
||||
or
|
||||
impl.(ImplItemNode).isFullyParametric()
|
||||
)
|
||||
}
|
||||
|
||||
/** Gets all of the fully parametric `impl` blocks that target this type. */
|
||||
final override ImplMention getABaseTypeMention() {
|
||||
this.asItemNode() = result.resolveSelfTy() and
|
||||
result.isFullyParametric()
|
||||
}
|
||||
}
|
||||
|
||||
/** A struct type. */
|
||||
@@ -138,8 +100,6 @@ class TraitType extends Type, TTrait {
|
||||
|
||||
TraitType() { this = TTrait(trait) }
|
||||
|
||||
override Function getMethod(string name) { result = trait.(ItemNode).getASuccessor(name) }
|
||||
|
||||
override StructField getStructField(string name) { none() }
|
||||
|
||||
override TupleField getTupleField(int i) { none() }
|
||||
@@ -151,14 +111,6 @@ class TraitType extends Type, TTrait {
|
||||
any(AssociatedTypeTypeParameter param | param.getTrait() = trait and param.getIndex() = i)
|
||||
}
|
||||
|
||||
pragma[nomagic]
|
||||
private TypeReprMention getABoundMention() {
|
||||
result = trait.getTypeBoundList().getABound().getTypeRepr()
|
||||
}
|
||||
|
||||
/** Gets any of the trait bounds of this trait. */
|
||||
override TypeMention getABaseTypeMention() { result = this.getABoundMention() }
|
||||
|
||||
override string toString() { result = trait.toString() }
|
||||
|
||||
override Location getLocation() { result = trait.getLocation() }
|
||||
@@ -220,8 +172,6 @@ class ImplType extends Type, TImpl {
|
||||
|
||||
ImplType() { this = TImpl(impl) }
|
||||
|
||||
override Function getMethod(string name) { result = impl.(ItemNode).getASuccessor(name) }
|
||||
|
||||
override StructField getStructField(string name) { none() }
|
||||
|
||||
override TupleField getTupleField(int i) { none() }
|
||||
@@ -230,9 +180,6 @@ class ImplType extends Type, TImpl {
|
||||
result = TTypeParamTypeParameter(impl.getGenericParamList().getTypeParam(i))
|
||||
}
|
||||
|
||||
/** Get the trait implemented by this `impl` block, if any. */
|
||||
override TypeMention getABaseTypeMention() { result = impl.getTrait() }
|
||||
|
||||
override string toString() { result = impl.toString() }
|
||||
|
||||
override Location getLocation() { result = impl.getLocation() }
|
||||
@@ -247,8 +194,6 @@ class ImplType extends Type, TImpl {
|
||||
class ArrayType extends Type, TArrayType {
|
||||
ArrayType() { this = TArrayType() }
|
||||
|
||||
override Function getMethod(string name) { none() }
|
||||
|
||||
override StructField getStructField(string name) { none() }
|
||||
|
||||
override TupleField getTupleField(int i) { none() }
|
||||
@@ -257,8 +202,6 @@ class ArrayType extends Type, TArrayType {
|
||||
none() // todo
|
||||
}
|
||||
|
||||
override TypeMention getABaseTypeMention() { none() }
|
||||
|
||||
override string toString() { result = "[]" }
|
||||
|
||||
override Location getLocation() { result instanceof EmptyLocation }
|
||||
@@ -273,8 +216,6 @@ class ArrayType extends Type, TArrayType {
|
||||
class RefType extends Type, TRefType {
|
||||
RefType() { this = TRefType() }
|
||||
|
||||
override Function getMethod(string name) { none() }
|
||||
|
||||
override StructField getStructField(string name) { none() }
|
||||
|
||||
override TupleField getTupleField(int i) { none() }
|
||||
@@ -284,8 +225,6 @@ class RefType extends Type, TRefType {
|
||||
i = 0
|
||||
}
|
||||
|
||||
override TypeMention getABaseTypeMention() { none() }
|
||||
|
||||
override string toString() { result = "&" }
|
||||
|
||||
override Location getLocation() { result instanceof EmptyLocation }
|
||||
@@ -293,8 +232,6 @@ class RefType extends Type, TRefType {
|
||||
|
||||
/** A type parameter. */
|
||||
abstract class TypeParameter extends Type {
|
||||
override TypeMention getABaseTypeMention() { none() }
|
||||
|
||||
override StructField getStructField(string name) { none() }
|
||||
|
||||
override TupleField getTupleField(int i) { none() }
|
||||
@@ -318,19 +255,9 @@ class TypeParamTypeParameter extends TypeParameter, TTypeParamTypeParameter {
|
||||
|
||||
TypeParam getTypeParam() { result = typeParam }
|
||||
|
||||
override Function getMethod(string name) {
|
||||
// NOTE: If the type parameter has trait bounds, then this finds methods
|
||||
// on the bounding traits.
|
||||
result = typeParam.(ItemNode).getASuccessor(name)
|
||||
}
|
||||
|
||||
override string toString() { result = typeParam.toString() }
|
||||
|
||||
override Location getLocation() { result = typeParam.getLocation() }
|
||||
|
||||
final override TypeMention getABaseTypeMention() {
|
||||
result = typeParam.getTypeBoundList().getABound().getTypeRepr()
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -377,19 +304,13 @@ class AssociatedTypeTypeParameter extends TypeParameter, TAssociatedTypeTypePara
|
||||
|
||||
int getIndex() { traitAliasIndex(_, result, typeAlias) }
|
||||
|
||||
override Function getMethod(string name) { none() }
|
||||
|
||||
override string toString() { result = typeAlias.getName().getText() }
|
||||
|
||||
override Location getLocation() { result = typeAlias.getLocation() }
|
||||
|
||||
override TypeMention getABaseTypeMention() { none() }
|
||||
}
|
||||
|
||||
/** An implicit reference type parameter. */
|
||||
class RefTypeParameter extends TypeParameter, TRefTypeParameter {
|
||||
override Function getMethod(string name) { none() }
|
||||
|
||||
override string toString() { result = "&T" }
|
||||
|
||||
override Location getLocation() { result instanceof EmptyLocation }
|
||||
@@ -409,15 +330,43 @@ class SelfTypeParameter extends TypeParameter, TSelfTypeParameter {
|
||||
|
||||
Trait getTrait() { result = trait }
|
||||
|
||||
override TypeMention getABaseTypeMention() { result = trait }
|
||||
|
||||
override Function getMethod(string name) {
|
||||
// The `Self` type parameter is an implementation of the trait, so it has
|
||||
// all the trait's methods.
|
||||
result = trait.(ItemNode).getASuccessor(name)
|
||||
}
|
||||
|
||||
override string toString() { result = "Self [" + trait.toString() + "]" }
|
||||
|
||||
override Location getLocation() { result = trait.getLocation() }
|
||||
}
|
||||
|
||||
/**
|
||||
* A type abstraction. I.e., a place in the program where type variables are
|
||||
* introduced.
|
||||
*
|
||||
* Example:
|
||||
* ```rust
|
||||
* impl<A, B> Foo<A, B> { }
|
||||
* // ^^^^^^ a type abstraction
|
||||
* ```
|
||||
*/
|
||||
abstract class TypeAbstraction extends AstNode {
|
||||
abstract TypeParameter getATypeParameter();
|
||||
}
|
||||
|
||||
final class ImplTypeAbstraction extends TypeAbstraction, Impl {
|
||||
override TypeParamTypeParameter getATypeParameter() {
|
||||
result.getTypeParam() = this.getGenericParamList().getATypeParam()
|
||||
}
|
||||
}
|
||||
|
||||
final class TraitTypeAbstraction extends TypeAbstraction, Trait {
|
||||
override TypeParamTypeParameter getATypeParameter() {
|
||||
result.getTypeParam() = this.getGenericParamList().getATypeParam()
|
||||
}
|
||||
}
|
||||
|
||||
final class TypeBoundTypeAbstraction extends TypeAbstraction, TypeBound {
|
||||
override TypeParamTypeParameter getATypeParameter() { none() }
|
||||
}
|
||||
|
||||
final class SelfTypeBoundTypeAbstraction extends TypeAbstraction, Name {
|
||||
SelfTypeBoundTypeAbstraction() { any(Trait trait).getName() = this }
|
||||
|
||||
override TypeParamTypeParameter getATypeParameter() { none() }
|
||||
}
|
||||
|
||||
@@ -19,6 +19,8 @@ private module Input1 implements InputSig1<Location> {
|
||||
|
||||
class TypeParameter = T::TypeParameter;
|
||||
|
||||
class TypeAbstraction = T::TypeAbstraction;
|
||||
|
||||
private newtype TTypeArgumentPosition =
|
||||
// method type parameters are matched by position instead of by type
|
||||
// parameter entity, to avoid extra recursion through method call resolution
|
||||
@@ -108,7 +110,52 @@ private module Input2 implements InputSig2 {
|
||||
|
||||
class TypeMention = TM::TypeMention;
|
||||
|
||||
TypeMention getABaseTypeMention(Type t) { result = t.getABaseTypeMention() }
|
||||
TypeMention getABaseTypeMention(Type t) { none() }
|
||||
|
||||
TypeMention getATypeParameterConstraint(TypeParameter tp) {
|
||||
result = tp.(TypeParamTypeParameter).getTypeParam().getTypeBoundList().getABound().getTypeRepr()
|
||||
or
|
||||
result = tp.(SelfTypeParameter).getTrait()
|
||||
}
|
||||
|
||||
/**
|
||||
* Use the constraint mechanism in the shared type inference library to
|
||||
* support traits. In Rust `constraint` is always a trait.
|
||||
*
|
||||
* See the documentation of `conditionSatisfiesConstraint` in the shared type
|
||||
* inference module for more information.
|
||||
*/
|
||||
predicate conditionSatisfiesConstraint(
|
||||
TypeAbstraction abs, TypeMention condition, TypeMention constraint
|
||||
) {
|
||||
// `impl` blocks implementing traits
|
||||
exists(Impl impl |
|
||||
abs = impl and
|
||||
condition = impl.getSelfTy() and
|
||||
constraint = impl.getTrait()
|
||||
)
|
||||
or
|
||||
// supertraits
|
||||
exists(Trait trait |
|
||||
abs = trait and
|
||||
condition = trait and
|
||||
constraint = trait.getTypeBoundList().getABound().getTypeRepr()
|
||||
)
|
||||
or
|
||||
// trait bounds on type parameters
|
||||
exists(TypeParam param |
|
||||
abs = param.getTypeBoundList().getABound() and
|
||||
condition = param and
|
||||
constraint = abs.(TypeBound).getTypeRepr()
|
||||
)
|
||||
or
|
||||
// the implicit `Self` type parameter satisfies the trait
|
||||
exists(SelfTypeParameterMention self |
|
||||
abs = self and
|
||||
condition = self and
|
||||
constraint = self.getTrait()
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
private module M2 = Make2<Input2>;
|
||||
@@ -227,7 +274,7 @@ private Type getRefAdjustImplicitSelfType(SelfParam self, TypePath suffix, Type
|
||||
}
|
||||
|
||||
pragma[nomagic]
|
||||
private Type inferImplSelfType(Impl i, TypePath path) {
|
||||
private Type resolveImplSelfType(Impl i, TypePath path) {
|
||||
result = i.getSelfTy().(TypeReprMention).resolveTypeAt(path)
|
||||
}
|
||||
|
||||
@@ -239,7 +286,7 @@ private Type inferImplicitSelfType(SelfParam self, TypePath path) {
|
||||
self = f.getParamList().getSelfParam() and
|
||||
result = getRefAdjustImplicitSelfType(self, suffix, t, path)
|
||||
|
|
||||
t = inferImplSelfType(i, suffix)
|
||||
t = resolveImplSelfType(i, suffix)
|
||||
or
|
||||
t = TSelfTypeParameter(i) and suffix.isEmpty()
|
||||
)
|
||||
@@ -941,36 +988,104 @@ private module Cached {
|
||||
)
|
||||
}
|
||||
|
||||
pragma[inline]
|
||||
private Type getLookupType(AstNode n) {
|
||||
exists(Type t |
|
||||
t = inferType(n) and
|
||||
if t = TRefType()
|
||||
then
|
||||
// for reference types, lookup members in the type being referenced
|
||||
result = inferType(n, TypePath::singleton(TRefTypeParameter()))
|
||||
else result = t
|
||||
private class ReceiverExpr extends Expr {
|
||||
MethodCallExpr mce;
|
||||
|
||||
ReceiverExpr() { mce.getReceiver() = this }
|
||||
|
||||
string getField() { result = mce.getIdentifier().getText() }
|
||||
|
||||
int getNumberOfArgs() { result = mce.getArgList().getNumberOfArgs() }
|
||||
|
||||
pragma[nomagic]
|
||||
Type getTypeAt(TypePath path) {
|
||||
exists(TypePath path0 | result = inferType(this, path0) |
|
||||
path0 = TypePath::cons(TRefTypeParameter(), path)
|
||||
or
|
||||
not path0.isCons(TRefTypeParameter(), _) and
|
||||
not (path0.isEmpty() and result = TRefType()) and
|
||||
path = path0
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
/** Holds if a method for `type` with the name `name` and the arity `arity` exists in `impl`. */
|
||||
pragma[nomagic]
|
||||
private predicate methodCandidate(Type type, string name, int arity, Impl impl) {
|
||||
type = impl.getSelfTy().(TypeReprMention).resolveType() and
|
||||
exists(Function f |
|
||||
f = impl.(ImplItemNode).getASuccessor(name) and
|
||||
f.getParamList().hasSelfParam() and
|
||||
arity = f.getParamList().getNumberOfParams()
|
||||
)
|
||||
}
|
||||
|
||||
pragma[nomagic]
|
||||
private Type getMethodCallExprLookupType(MethodCallExpr mce, string name) {
|
||||
result = getLookupType(mce.getReceiver()) and
|
||||
name = mce.getIdentifier().getText()
|
||||
private module IsInstantiationOfInput implements IsInstantiationOfInputSig<ReceiverExpr> {
|
||||
pragma[nomagic]
|
||||
predicate potentialInstantiationOf(
|
||||
ReceiverExpr receiver, TypeAbstraction impl, TypeMention constraint
|
||||
) {
|
||||
methodCandidate(receiver.getTypeAt(TypePath::nil()), receiver.getField(),
|
||||
receiver.getNumberOfArgs(), impl) and
|
||||
constraint = impl.(ImplTypeAbstraction).getSelfTy()
|
||||
}
|
||||
|
||||
predicate relevantTypeMention(TypeMention constraint) {
|
||||
exists(Impl impl | methodCandidate(_, _, _, impl) and constraint = impl.getSelfTy())
|
||||
}
|
||||
}
|
||||
|
||||
bindingset[item, name]
|
||||
pragma[inline_late]
|
||||
private Function getMethodSuccessor(ItemNode item, string name) {
|
||||
result = item.getASuccessor(name)
|
||||
}
|
||||
|
||||
bindingset[tp, name]
|
||||
pragma[inline_late]
|
||||
private Function getTypeParameterMethod(TypeParameter tp, string name) {
|
||||
result = getMethodSuccessor(tp.(TypeParamTypeParameter).getTypeParam(), name)
|
||||
or
|
||||
result = getMethodSuccessor(tp.(SelfTypeParameter).getTrait(), name)
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets a method that the method call `mce` resolves to, if any.
|
||||
* Gets the method from an `impl` block with an implementing type that matches
|
||||
* the type of `receiver` and with a name of the method call in which
|
||||
* `receiver` occurs, if any.
|
||||
*/
|
||||
private Function getMethodFromImpl(ReceiverExpr receiver) {
|
||||
exists(Impl impl |
|
||||
IsInstantiationOf<ReceiverExpr, IsInstantiationOfInput>::isInstantiationOf(receiver, impl, _) and
|
||||
result = getMethodSuccessor(impl, receiver.getField())
|
||||
)
|
||||
}
|
||||
|
||||
/** Gets a method that the method call `mce` resolves to, if any. */
|
||||
cached
|
||||
Function resolveMethodCallExpr(MethodCallExpr mce) {
|
||||
exists(string name | result = getMethodCallExprLookupType(mce, name).getMethod(name))
|
||||
exists(ReceiverExpr receiver | mce.getReceiver() = receiver |
|
||||
// The method comes from an `impl` block targeting the type of `receiver`.
|
||||
result = getMethodFromImpl(receiver)
|
||||
or
|
||||
// The type of `receiver` is a type parameter and the method comes from a
|
||||
// trait bound on the type parameter.
|
||||
result = getTypeParameterMethod(receiver.getTypeAt(TypePath::nil()), receiver.getField())
|
||||
)
|
||||
}
|
||||
|
||||
pragma[inline]
|
||||
private Type inferRootTypeDeref(AstNode n) {
|
||||
result = inferType(n) and
|
||||
result != TRefType()
|
||||
or
|
||||
// for reference types, lookup members in the type being referenced
|
||||
result = inferType(n, TypePath::singleton(TRefTypeParameter()))
|
||||
}
|
||||
|
||||
pragma[nomagic]
|
||||
private Type getFieldExprLookupType(FieldExpr fe, string name) {
|
||||
result = getLookupType(fe.getContainer()) and
|
||||
name = fe.getIdentifier().getText()
|
||||
result = inferRootTypeDeref(fe.getContainer()) and name = fe.getIdentifier().getText()
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -248,3 +248,19 @@ class TraitMention extends TypeMention, TraitItemNode {
|
||||
|
||||
override Type resolveType() { result = TTrait(this) }
|
||||
}
|
||||
|
||||
// NOTE: Since the implicit type parameter for the self type parameter never
|
||||
// appears in the AST, we (somewhat arbitrarily) choose the name of a trait as a
|
||||
// type mention. This works because there is a one-to-one correspondence between
|
||||
// a trait and its name.
|
||||
class SelfTypeParameterMention extends TypeMention, Name {
|
||||
Trait trait;
|
||||
|
||||
SelfTypeParameterMention() { trait.getName() = this }
|
||||
|
||||
Trait getTrait() { result = trait }
|
||||
|
||||
override Type resolveType() { result = TSelfTypeParameter(trait) }
|
||||
|
||||
override TypeReprMention getTypeArgument(int i) { none() }
|
||||
}
|
||||
|
||||
@@ -0,0 +1,58 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::directory::Directory>::new", "Argument[0]", "ReturnValue.Field[crate::directory::Directory::base]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::directory::Directory>::new", "Argument[1]", "ReturnValue.Field[crate::directory::Directory::path]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::files::Files as crate::clone::Clone>::clone", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::files::Files>::default_handler", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::files::Files>::disable_content_disposition", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::files::Files>::files_listing_renderer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::files::Files>::guard", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::files::Files>::index_file", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::files::Files>::method_guard", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::files::Files>::mime_override", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::files::Files>::path_filter", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::files::Files>::prefer_utf8", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::files::Files>::redirect_to_slash_directory", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::files::Files>::show_files_listing", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::files::Files>::use_etag", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::files::Files>::use_guards", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::files::Files>::use_hidden_files", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::files::Files>::use_last_modified", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::content_disposition", "Argument[self].Field[crate::named::NamedFile::content_disposition]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::content_encoding", "Argument[self].Field[crate::named::NamedFile::encoding]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::content_type", "Argument[self].Field[crate::named::NamedFile::content_type]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::disable_content_disposition", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::etag", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::file", "Argument[self].Field[crate::named::NamedFile::file]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::from_file", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::named::NamedFile::file]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::last_modified", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::metadata", "Argument[self].Field[crate::named::NamedFile::md]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::modified", "Argument[self].Field[crate::named::NamedFile::modified]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::path", "Argument[self].Field[crate::named::NamedFile::path]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::path", "Argument[self].Field[crate::named::NamedFile::path]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::prefer_utf8", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::set_content_disposition", "Argument[0]", "Argument[self].Field[crate::named::NamedFile::content_disposition]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::set_content_disposition", "Argument[0]", "ReturnValue.Field[crate::named::NamedFile::content_disposition]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::set_content_disposition", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::set_content_encoding", "Argument[0]", "Argument[self].Field[crate::named::NamedFile::encoding].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::set_content_encoding", "Argument[0]", "ReturnValue.Field[crate::named::NamedFile::encoding].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::set_content_encoding", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::set_content_type", "Argument[0]", "Argument[self].Field[crate::named::NamedFile::content_type]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::set_content_type", "Argument[0]", "ReturnValue.Field[crate::named::NamedFile::content_type]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::set_content_type", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::set_status_code", "Argument[0]", "Argument[self].Field[crate::named::NamedFile::status_code]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::set_status_code", "Argument[0]", "ReturnValue.Field[crate::named::NamedFile::status_code]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::set_status_code", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::use_etag", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::named::NamedFile>::use_last_modified", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::path_buf::PathBufWrap as crate::convert::AsRef>::as_ref", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::service::FilesService as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "<crate::service::FilesService as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::service::FilesService(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "crate::chunked::new_chunked_read", "Argument[0]", "ReturnValue.Field[crate::chunked::ChunkedReadFile::size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "crate::chunked::new_chunked_read", "Argument[1]", "ReturnValue.Field[crate::chunked::ChunkedReadFile::offset]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "crate::directory::directory_listing", "Argument[1].Reference", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::service::ServiceResponse::request]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-files", "crate::encoding::equiv_utf8_text", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
@@ -0,0 +1,40 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::addr", "Argument[self].Field[crate::TestServer::addr]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::delete", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::delete", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::get", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::get", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::head", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::head", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::options", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::options", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::patch", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::patch", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::post", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::post", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::put", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::put", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::request", "Argument[0]", "ReturnValue.Field[crate::request::ClientRequest::head].Field[crate::requests::head::RequestHead::method]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::request", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::request", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::sdelete", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::sdelete", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::sget", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::sget", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::shead", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::shead", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::soptions", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::soptions", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::spatch", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::spatch", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::spost", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::spost", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::sput", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::sput", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::surl", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http-test", "<crate::TestServer>::url", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
@@ -0,0 +1,227 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<&crate::header::value::HeaderValue as crate::header::into_value::TryIntoHeaderValue>::try_into_value", "Argument[self].Reference", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<&str as crate::header::into_value::TryIntoHeaderValue>::try_into_value", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::OnConnectData>::from_io", "Argument[1]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::body::body_stream::BodyStream>::new", "Argument[0]", "ReturnValue.Field[crate::body::body_stream::BodyStream::stream]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::body::boxed::BoxBody as crate::body::message_body::MessageBody>::boxed", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::body::boxed::BoxBody as crate::body::message_body::MessageBody>::try_into_bytes", "Argument[self]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::body::message_body::MessageBodyMapErr>::new", "Argument[0]", "ReturnValue.Field[crate::body::message_body::MessageBodyMapErr::body]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::body::message_body::MessageBodyMapErr>::new", "Argument[1]", "ReturnValue.Field[crate::body::message_body::MessageBodyMapErr::mapper].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::body::sized_stream::SizedStream as crate::body::message_body::MessageBody>::size", "Argument[self].Field[crate::body::sized_stream::SizedStream::size]", "ReturnValue.Field[crate::body::size::BodySize::Sized(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::body::sized_stream::SizedStream>::new", "Argument[0]", "ReturnValue.Field[crate::body::sized_stream::SizedStream::size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::body::sized_stream::SizedStream>::new", "Argument[1]", "ReturnValue.Field[crate::body::sized_stream::SizedStream::stream]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::builder::HttpServiceBuilder>::client_disconnect_timeout", "Argument[0]", "Argument[self].Field[crate::builder::HttpServiceBuilder::client_disconnect_timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::builder::HttpServiceBuilder>::client_disconnect_timeout", "Argument[0]", "ReturnValue.Field[crate::builder::HttpServiceBuilder::client_disconnect_timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::builder::HttpServiceBuilder>::client_disconnect_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::builder::HttpServiceBuilder>::client_request_timeout", "Argument[0]", "Argument[self].Field[crate::builder::HttpServiceBuilder::client_request_timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::builder::HttpServiceBuilder>::client_request_timeout", "Argument[0]", "ReturnValue.Field[crate::builder::HttpServiceBuilder::client_request_timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::builder::HttpServiceBuilder>::client_request_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::builder::HttpServiceBuilder>::expect", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::builder::HttpServiceBuilder>::keep_alive", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::builder::HttpServiceBuilder>::local_addr", "Argument[0]", "Argument[self].Field[crate::builder::HttpServiceBuilder::local_addr].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::builder::HttpServiceBuilder>::local_addr", "Argument[0]", "ReturnValue.Field[crate::builder::HttpServiceBuilder::local_addr].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::builder::HttpServiceBuilder>::local_addr", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::builder::HttpServiceBuilder>::on_connect_ext", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::builder::HttpServiceBuilder>::secure", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::builder::HttpServiceBuilder>::upgrade", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::bytes::Bytes as crate::body::message_body::MessageBody>::try_into_bytes", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::encoding::decoder::Decoder>::from_headers", "Argument[0]", "ReturnValue.Field[crate::encoding::decoder::Decoder::stream]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::encoding::decoder::Decoder>::new", "Argument[0]", "ReturnValue.Field[crate::encoding::decoder::Decoder::stream]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::encoding::encoder::Encoder as crate::body::message_body::MessageBody>::try_into_bytes", "Argument[self]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::encoding::encoder::Encoder>::response", "Argument[2]", "ReturnValue.Field[crate::encoding::encoder::Encoder::body].Field[crate::encoding::encoder::EncoderBody::Stream::body]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::encoding::encoder::EncoderBody as crate::body::message_body::MessageBody>::try_into_bytes", "Argument[self]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::encoding::encoder::EncoderError as crate::error::Error>::source", "Argument[self].Field[crate::encoding::encoder::EncoderError::Io(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::error::DispatchError as crate::error::Error>::source", "Argument[self].Field[crate::error::DispatchError::H2(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::error::DispatchError as crate::error::Error>::source", "Argument[self].Field[crate::error::DispatchError::Io(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::error::DispatchError as crate::error::Error>::source", "Argument[self].Field[crate::error::DispatchError::Parse(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::error::Error>::with_cause", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::error::ParseError as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::error::ParseError::Io(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::error::ParseError as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::error::ParseError::Uri(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::error::ParseError as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::error::ParseError::Utf8(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::error::PayloadError as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::error::PayloadError::Http2Payload(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::error::PayloadError as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::error::PayloadError::Incomplete(0)].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::error::PayloadError as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::error::PayloadError::Incomplete(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::error::PayloadError as crate::error::Error>::source", "Argument[self].Field[crate::error::PayloadError::Http2Payload(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::error::PayloadError as crate::error::Error>::source", "Argument[self].Field[crate::error::PayloadError::Incomplete(0)].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::error::PayloadError as crate::error::Error>::source", "Argument[self].Field[crate::error::PayloadError::Io(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::extensions::NoOpHasher as crate::hash::Hasher>::finish", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::extensions::NoOpHasher as crate::hash::Hasher>::finish", "Argument[self].Field[crate::extensions::NoOpHasher(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::extensions::NoOpHasher as crate::hash::Hasher>::write_u64", "Argument[0]", "Argument[self].Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::extensions::NoOpHasher as crate::hash::Hasher>::write_u64", "Argument[0]", "Argument[self].Field[crate::extensions::NoOpHasher(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::Message as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::h1::Message::Item(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::Message>::chunk", "Argument[self].Field[crate::h1::Message::Chunk(0)].Field[crate::option::Option::Some(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::Message>::message", "Argument[self].Field[crate::h1::Message::Item(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::client::ClientCodec>::into_payload_codec", "Argument[self].Field[crate::h1::client::ClientCodec::inner]", "ReturnValue.Field[crate::h1::client::ClientPayloadCodec::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::client::ClientCodec>::new", "Argument[0]", "ReturnValue.Field[crate::h1::client::ClientCodec::inner].Field[crate::h1::client::ClientCodecInner::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::client::ClientPayloadCodec>::into_message_codec", "Argument[self].Field[crate::h1::client::ClientPayloadCodec::inner]", "ReturnValue.Field[crate::h1::client::ClientCodec::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::codec::Codec>::config", "Argument[self].Field[crate::h1::codec::Codec::config]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::codec::Codec>::new", "Argument[0]", "ReturnValue.Field[crate::h1::codec::Codec::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::decoder::PayloadDecoder>::length", "Argument[0]", "ReturnValue.Field[crate::h1::decoder::PayloadDecoder::kind].Field[crate::h1::decoder::Kind::Length(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::decoder::PayloadItem>::chunk", "Argument[self].Field[crate::h1::decoder::PayloadItem::Chunk(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::decoder::PayloadType>::unwrap", "Argument[self].Field[crate::h1::decoder::PayloadType::Payload(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::encoder::TransferEncoding>::encode", "Argument[self].Field[crate::h1::encoder::TransferEncoding::kind].Field[crate::h1::encoder::TransferEncodingKind::Chunked(0)]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::encoder::TransferEncoding>::length", "Argument[0]", "ReturnValue.Field[crate::h1::encoder::TransferEncoding::kind].Field[crate::h1::encoder::TransferEncodingKind::Length(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::service::H1Service>::expect", "Argument[0]", "ReturnValue.Field[crate::h1::service::H1Service::expect]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::service::H1Service>::on_connect_ext", "Argument[0]", "Argument[self].Field[crate::h1::service::H1Service::on_connect_ext]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::service::H1Service>::on_connect_ext", "Argument[0]", "ReturnValue.Field[crate::h1::service::H1Service::on_connect_ext]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::service::H1Service>::on_connect_ext", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::service::H1Service>::upgrade", "Argument[0]", "ReturnValue.Field[crate::h1::service::H1Service::upgrade]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::service::H1Service>::with_config", "Argument[0]", "ReturnValue.Field[crate::h1::service::H1Service::cfg]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::utils::SendResponse>::new", "Argument[0]", "ReturnValue.Field[crate::h1::utils::SendResponse::framed].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h1::utils::SendResponse>::new", "Argument[1].Field[crate::responses::response::Response::body]", "ReturnValue.Field[crate::h1::utils::SendResponse::body].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h2::Payload>::new", "Argument[0]", "ReturnValue.Field[crate::h2::Payload::stream]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h2::dispatcher::Dispatcher>::new", "Argument[0]", "ReturnValue.Field[crate::h2::dispatcher::Dispatcher::connection]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h2::dispatcher::Dispatcher>::new", "Argument[1]", "ReturnValue.Field[crate::h2::dispatcher::Dispatcher::flow]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h2::dispatcher::Dispatcher>::new", "Argument[2]", "ReturnValue.Field[crate::h2::dispatcher::Dispatcher::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h2::dispatcher::Dispatcher>::new", "Argument[3]", "ReturnValue.Field[crate::h2::dispatcher::Dispatcher::peer_addr]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h2::service::H2Service>::on_connect_ext", "Argument[0]", "Argument[self].Field[crate::h2::service::H2Service::on_connect_ext]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h2::service::H2Service>::on_connect_ext", "Argument[0]", "ReturnValue.Field[crate::h2::service::H2Service::on_connect_ext]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h2::service::H2Service>::on_connect_ext", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h2::service::H2Service>::with_config", "Argument[0]", "ReturnValue.Field[crate::h2::service::H2Service::cfg]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::h2::service::H2ServiceHandler as crate::Service>::call", "Argument[0].Field[1]", "ReturnValue.Field[crate::h2::service::H2ServiceHandlerResponse::state].Field[crate::h2::service::State::Handshake(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::header::map::Removed as crate::iter::traits::iterator::Iterator>::next", "Argument[self].Field[crate::header::map::Removed::inner].Field[crate::option::Option::Some(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::header::map::Removed as crate::iter::traits::iterator::Iterator>::size_hint", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::header::map::Value as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::header::map::Value::inner]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::header::shared::content_encoding::ContentEncoding as crate::convert::TryFrom>::try_from", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::header::shared::http_date::HttpDate as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::header::shared::http_date::HttpDate(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::header::shared::quality::Quality as crate::convert::TryFrom>::try_from", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::header::shared::quality_item::QualityItem as crate::str::traits::FromStr>::from_str", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::header::shared::quality_item::QualityItem>::max", "Argument[0]", "ReturnValue.Field[crate::header::shared::quality_item::QualityItem::item]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::header::shared::quality_item::QualityItem>::min", "Argument[0]", "ReturnValue.Field[crate::header::shared::quality_item::QualityItem::item]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::header::shared::quality_item::QualityItem>::new", "Argument[0]", "ReturnValue.Field[crate::header::shared::quality_item::QualityItem::item]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::header::shared::quality_item::QualityItem>::new", "Argument[1]", "ReturnValue.Field[crate::header::shared::quality_item::QualityItem::quality]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::header::shared::quality_item::QualityItem>::zero", "Argument[0]", "ReturnValue.Field[crate::header::shared::quality_item::QualityItem::item]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::header::value::HeaderValue as crate::header::into_value::TryIntoHeaderValue>::try_into_value", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::keep_alive::KeepAlive as crate::convert::From>::from", "Argument[0].Field[crate::option::Option::Some(0)].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::keep_alive::KeepAlive::Timeout(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::keep_alive::KeepAlive as crate::convert::From>::from", "Argument[0].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::keep_alive::KeepAlive::Timeout(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::keep_alive::KeepAlive as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::keep_alive::KeepAlive::Timeout(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::keep_alive::KeepAlive>::duration", "Argument[self].Field[crate::keep_alive::KeepAlive::Timeout(0)].Reference", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::keep_alive::KeepAlive>::normalize", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::payload::Payload as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::payload::Payload::H1::payload]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::payload::Payload as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::payload::Payload::H2::payload].Field[crate::h2::Payload::stream]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::payload::Payload as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::payload::Payload::H2::payload]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::payload::Payload as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::payload::Payload::Stream::payload]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::payload::Payload>::take", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::head::RequestHead as crate::message::Head>::with_pool", "Argument[0].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::head::RequestHead>::headers", "Argument[self].Field[crate::requests::head::RequestHead::headers]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::head::RequestHead>::headers_mut", "Argument[self].Field[crate::requests::head::RequestHead::headers]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::head::RequestHeadType as crate::convert::AsRef>::as_ref", "Argument[self].Field[crate::requests::head::RequestHeadType::Owned(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::head::RequestHeadType as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::requests::head::RequestHeadType::Owned(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::head::RequestHeadType as crate::h1::encoder::MessageType>::headers", "Argument[self].Field[crate::requests::head::RequestHeadType::Owned(0)].Field[crate::requests::head::RequestHead::headers]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::request::Request as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::requests::request::Request::head]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::request::Request as crate::h1::decoder::MessageType>::headers_mut", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::request::Request as crate::http_message::HttpMessage>::headers", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::request::Request as crate::http_message::HttpMessage>::take_payload", "Argument[self].Field[crate::requests::request::Request::payload]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::request::Request>::head", "Argument[self].Field[crate::requests::request::Request::head]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::request::Request>::head_mut", "Argument[self].Field[crate::requests::request::Request::head]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::request::Request>::into_parts", "Argument[self].Field[crate::requests::request::Request::head]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::request::Request>::into_parts", "Argument[self].Field[crate::requests::request::Request::payload]", "ReturnValue.Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::request::Request>::method", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::request::Request>::payload", "Argument[self].Field[crate::requests::request::Request::payload]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::request::Request>::peer_addr", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::request::Request>::replace_payload", "Argument[0]", "ReturnValue.Field[0].Field[crate::requests::request::Request::payload]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::request::Request>::take_conn_data", "Argument[self].Field[crate::requests::request::Request::conn_data].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::request::Request>::take_conn_data", "Argument[self].Field[crate::requests::request::Request::conn_data]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::request::Request>::take_payload", "Argument[self].Field[crate::requests::request::Request::payload]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::request::Request>::uri", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::request::Request>::version", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::requests::request::Request>::with_payload", "Argument[0]", "ReturnValue.Field[crate::requests::request::Request::payload]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::builder::ResponseBuilder as crate::convert::From>::from", "Argument[0].Field[crate::responses::response::Response::head]", "ReturnValue.Field[crate::responses::builder::ResponseBuilder::head].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::builder::ResponseBuilder>::append_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::builder::ResponseBuilder>::content_type", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::builder::ResponseBuilder>::force_close", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::builder::ResponseBuilder>::insert_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::builder::ResponseBuilder>::keep_alive", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::builder::ResponseBuilder>::message_body", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::responses::response::Response::body]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::builder::ResponseBuilder>::message_body", "Argument[self].Field[crate::responses::builder::ResponseBuilder::head].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::responses::response::Response::head]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::builder::ResponseBuilder>::no_chunking", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::builder::ResponseBuilder>::reason", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::builder::ResponseBuilder>::status", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::builder::ResponseBuilder>::take", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::builder::ResponseBuilder>::upgrade", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::head::BoxedResponseHead as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::responses::head::BoxedResponseHead::head].Field[crate::option::Option::Some(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::head::BoxedResponseHead as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[crate::responses::head::BoxedResponseHead::head].Field[crate::option::Option::Some(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::head::ResponseHead as crate::h1::decoder::MessageType>::headers_mut", "Argument[self].Field[crate::responses::head::ResponseHead::headers]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::head::ResponseHead>::headers", "Argument[self].Field[crate::responses::head::ResponseHead::headers]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::head::ResponseHead>::headers_mut", "Argument[self].Field[crate::responses::head::ResponseHead::headers]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::head::ResponseHead>::new", "Argument[0]", "ReturnValue.Field[crate::responses::head::ResponseHead::status]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::head::ResponseHead>::reason", "Argument[self].Field[crate::responses::head::ResponseHead::reason].Field[crate::option::Option::Some(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response as crate::convert::From>::from", "Argument[0].Reference", "ReturnValue.Field[crate::responses::response::Response::body]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::responses::response::Response::body]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response as crate::h1::encoder::MessageType>::headers", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response as crate::h1::encoder::MessageType>::status", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::body", "Argument[self].Field[crate::responses::response::Response::body]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::drop_body", "Argument[self].Field[crate::responses::response::Response::extensions]", "ReturnValue.Field[crate::responses::response::Response::extensions]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::drop_body", "Argument[self].Field[crate::responses::response::Response::head]", "ReturnValue.Field[crate::responses::response::Response::head]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::head", "Argument[self].Field[crate::responses::response::Response::head]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::head_mut", "Argument[self].Field[crate::responses::response::Response::head]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::into_body", "Argument[self].Field[crate::responses::response::Response::body]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::into_parts", "Argument[self].Field[crate::responses::response::Response::body]", "ReturnValue.Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::into_parts", "Argument[self].Field[crate::responses::response::Response::extensions]", "ReturnValue.Field[0].Field[crate::responses::response::Response::extensions]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::into_parts", "Argument[self].Field[crate::responses::response::Response::head]", "ReturnValue.Field[0].Field[crate::responses::response::Response::head]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::map_body", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::map_body", "Argument[self]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::map_body", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::map_into_boxed_body", "Argument[self].Field[crate::responses::response::Response::extensions]", "ReturnValue.Field[crate::responses::response::Response::extensions]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::map_into_boxed_body", "Argument[self].Field[crate::responses::response::Response::head]", "ReturnValue.Field[crate::responses::response::Response::head]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::replace_body", "Argument[0]", "ReturnValue.Field[0].Field[crate::responses::response::Response::body]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::replace_body", "Argument[self].Field[crate::responses::response::Response::body]", "ReturnValue.Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::replace_body", "Argument[self].Field[crate::responses::response::Response::extensions]", "ReturnValue.Field[0].Field[crate::responses::response::Response::extensions]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::replace_body", "Argument[self].Field[crate::responses::response::Response::head]", "ReturnValue.Field[0].Field[crate::responses::response::Response::head]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::set_body", "Argument[0]", "ReturnValue.Field[crate::responses::response::Response::body]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::set_body", "Argument[self].Field[crate::responses::response::Response::extensions]", "ReturnValue.Field[crate::responses::response::Response::extensions]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::set_body", "Argument[self].Field[crate::responses::response::Response::head]", "ReturnValue.Field[crate::responses::response::Response::head]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::responses::response::Response>::with_body", "Argument[1]", "ReturnValue.Field[crate::responses::response::Response::body]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::service::HttpService>::expect", "Argument[0]", "ReturnValue.Field[crate::service::HttpService::expect]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::service::HttpService>::on_connect_ext", "Argument[0]", "Argument[self].Field[crate::service::HttpService::on_connect_ext]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::service::HttpService>::on_connect_ext", "Argument[0]", "ReturnValue.Field[crate::service::HttpService::on_connect_ext]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::service::HttpService>::on_connect_ext", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::service::HttpService>::upgrade", "Argument[0]", "ReturnValue.Field[crate::service::HttpService::upgrade]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::service::HttpService>::with_config", "Argument[0]", "ReturnValue.Field[crate::service::HttpService::cfg]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::service::HttpServiceHandler>::new", "Argument[0]", "ReturnValue.Field[crate::service::HttpServiceHandler::cfg]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::service::HttpServiceHandler>::new", "Argument[4]", "ReturnValue.Field[crate::service::HttpServiceHandler::on_connect_ext]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::service::TlsAcceptorConfig>::handshake_timeout", "Argument[0]", "ReturnValue.Field[crate::service::TlsAcceptorConfig::handshake_timeout].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::test::TestBuffer>::clone", "Argument[self].Field[crate::test::TestBuffer::err].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::test::TestBuffer::err].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::test::TestBuffer>::clone", "Argument[self].Field[crate::test::TestBuffer::err].Reference", "ReturnValue.Field[crate::test::TestBuffer::err]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::test::TestBuffer>::clone", "Argument[self].Field[crate::test::TestBuffer::err]", "ReturnValue.Field[crate::test::TestBuffer::err]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::test::TestRequest>::append_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::test::TestRequest>::insert_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::test::TestRequest>::method", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::test::TestRequest>::set_payload", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::test::TestRequest>::take", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::test::TestRequest>::uri", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::test::TestRequest>::version", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::time::SystemTime as crate::convert::From>::from", "Argument[0].Field[crate::header::shared::http_date::HttpDate(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::codec::Codec as crate::codec::decoder::Decoder>::decode", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::codec::Codec>::client_mode", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::codec::Codec>::max_size", "Argument[0]", "Argument[self].Field[crate::ws::codec::Codec::max_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::codec::Codec>::max_size", "Argument[0]", "ReturnValue.Field[crate::ws::codec::Codec::max_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::codec::Codec>::max_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::dispatcher::Dispatcher>::with", "Argument[0]", "ReturnValue.Field[crate::ws::dispatcher::Dispatcher::inner].Field[crate::ws::dispatcher::inner::Dispatcher::framed]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::dispatcher::inner::Dispatcher>::framed", "Argument[self].Field[crate::ws::dispatcher::inner::Dispatcher::framed]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::dispatcher::inner::Dispatcher>::framed_mut", "Argument[self].Field[crate::ws::dispatcher::inner::Dispatcher::framed]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::dispatcher::inner::Dispatcher>::new", "Argument[0]", "ReturnValue.Field[crate::ws::dispatcher::inner::Dispatcher::framed]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::dispatcher::inner::Dispatcher>::service", "Argument[self].Field[crate::ws::dispatcher::inner::Dispatcher::service]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::dispatcher::inner::Dispatcher>::service_mut", "Argument[self].Field[crate::ws::dispatcher::inner::Dispatcher::service]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::dispatcher::inner::Dispatcher>::tx", "Argument[self].Field[crate::ws::dispatcher::inner::Dispatcher::tx].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::dispatcher::inner::Dispatcher>::tx", "Argument[self].Field[crate::ws::dispatcher::inner::Dispatcher::tx]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::dispatcher::inner::Dispatcher>::with_rx", "Argument[0]", "ReturnValue.Field[crate::ws::dispatcher::inner::Dispatcher::framed]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::dispatcher::inner::Dispatcher>::with_rx", "Argument[2]", "ReturnValue.Field[crate::ws::dispatcher::inner::Dispatcher::rx]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::dispatcher::inner::DispatcherError as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::ws::dispatcher::inner::DispatcherError::Service(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::frame::Parser>::parse", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::proto::CloseCode as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::ws::proto::CloseCode::Other(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::proto::CloseReason as crate::convert::From>::from", "Argument[0].Field[0]", "ReturnValue.Field[crate::ws::proto::CloseReason::code]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::ws::proto::CloseReason as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::ws::proto::CloseReason::code]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<u16 as crate::convert::From>::from", "Argument[0].Field[crate::ws::proto::CloseCode::Other(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<u16 as crate::convert::From>::from", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: sinkModel
|
||||
data:
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "<crate::service::HttpServiceHandler as crate::Service>::call", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-http", "crate::ws::proto::hash_key", "Argument[0]", "hasher-input", "df-generated"]
|
||||
@@ -0,0 +1,43 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::field::Field>::content_disposition", "Argument[self].Field[crate::field::Field::content_disposition].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::field::Field>::content_type", "Argument[self].Field[crate::field::Field::content_type].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::field::Field>::headers", "Argument[self].Field[crate::field::Field::headers]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::field::Field>::name", "Argument[self].Field[crate::field::Field::content_disposition].Field[crate::option::Option::Some(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::field::Field>::new", "Argument[0]", "ReturnValue.Field[crate::field::Field::content_type]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::field::Field>::new", "Argument[1]", "ReturnValue.Field[crate::field::Field::content_disposition]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::field::Field>::new", "Argument[2].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::field::Field::form_field_name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::field::Field>::new", "Argument[3]", "ReturnValue.Field[crate::field::Field::headers]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::field::Field>::new", "Argument[4]", "ReturnValue.Field[crate::field::Field::safety]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::field::Field>::new", "Argument[5]", "ReturnValue.Field[crate::field::Field::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::field::InnerField>::new", "Argument[1]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::field::InnerField::boundary]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::Limits>::new", "Argument[0]", "ReturnValue.Field[crate::form::Limits::total_limit_remaining]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::Limits>::new", "Argument[1]", "ReturnValue.Field[crate::form::Limits::memory_limit_remaining]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::MultipartForm>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::MultipartForm>::into_inner", "Argument[self].Field[crate::form::MultipartForm(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::MultipartFormConfig>::error_handler", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::MultipartFormConfig>::memory_limit", "Argument[0]", "Argument[self].Field[crate::form::MultipartFormConfig::memory_limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::MultipartFormConfig>::memory_limit", "Argument[0]", "ReturnValue.Field[crate::form::MultipartFormConfig::memory_limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::MultipartFormConfig>::memory_limit", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::MultipartFormConfig>::total_limit", "Argument[0]", "Argument[self].Field[crate::form::MultipartFormConfig::total_limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::MultipartFormConfig>::total_limit", "Argument[0]", "ReturnValue.Field[crate::form::MultipartFormConfig::total_limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::MultipartFormConfig>::total_limit", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::json::Json>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::json::Json>::into_inner", "Argument[self].Field[crate::form::json::Json(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::json::JsonConfig>::error_handler", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::json::JsonConfig>::validate_content_type", "Argument[0]", "Argument[self].Field[crate::form::json::JsonConfig::validate_content_type]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::json::JsonConfig>::validate_content_type", "Argument[0]", "ReturnValue.Field[crate::form::json::JsonConfig::validate_content_type]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::json::JsonConfig>::validate_content_type", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::tempfile::TempFileConfig>::directory", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::tempfile::TempFileConfig>::error_handler", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::text::Text>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::text::Text>::into_inner", "Argument[self].Field[crate::form::text::Text(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::text::TextConfig>::error_handler", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::text::TextConfig>::validate_content_type", "Argument[0]", "Argument[self].Field[crate::form::text::TextConfig::validate_content_type]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::text::TextConfig>::validate_content_type", "Argument[0]", "ReturnValue.Field[crate::form::text::TextConfig::validate_content_type]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::form::text::TextConfig>::validate_content_type", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-multipart", "<crate::safety::Safety>::clone", "Argument[self].Field[crate::safety::Safety::clean].Reference", "ReturnValue.Field[crate::safety::Safety::clean]", "value", "dfc-generated"]
|
||||
@@ -0,0 +1,35 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<&str as crate::resource_path::ResourcePath>::path", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<_ as crate::resource_path::Resource>::resource_path", "Argument[self].Reference", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::ByteString as crate::pattern::IntoPatterns>::patterns", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::ByteString as crate::resource_path::ResourcePath>::path", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::de::PathDeserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::PathDeserializer::path]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::path::Path as crate::resource_path::Resource>::resource_path", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::path::Path>::get_mut", "Argument[self].Field[crate::path::Path::path]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::path::Path>::get_ref", "Argument[self].Field[crate::path::Path::path]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::path::Path>::iter", "Argument[self]", "ReturnValue.Field[crate::path::PathIter::params]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::path::Path>::new", "Argument[0]", "ReturnValue.Field[crate::path::Path::path]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::path::Path>::set", "Argument[0]", "Argument[self].Field[crate::path::Path::path]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::pattern::Patterns as crate::pattern::IntoPatterns>::patterns", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::resource::ResourceDef>::capture_match_info_fn", "Argument[0]", "Argument[1].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::resource::ResourceDef>::id", "Argument[self].Field[crate::resource::ResourceDef::id]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::resource::ResourceDef>::is_prefix", "Argument[self].Field[crate::resource::ResourceDef::is_prefix]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::resource::ResourceDef>::join", "Argument[0].Field[crate::resource::ResourceDef::is_prefix]", "ReturnValue.Field[crate::resource::ResourceDef::is_prefix]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::resource::ResourceDef>::pattern", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::resource::ResourceDef>::pattern_iter", "Argument[self].Field[crate::resource::ResourceDef::patterns]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::resource::ResourceDef>::set_id", "Argument[0]", "Argument[self].Field[crate::resource::ResourceDef::id]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::router::RouterBuilder>::finish", "Argument[self].Field[crate::router::RouterBuilder::routes]", "ReturnValue.Field[crate::router::Router::routes]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::string::String as crate::pattern::IntoPatterns>::patterns", "Argument[self].Reference", "ReturnValue.Field[crate::pattern::Patterns::Single(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::string::String as crate::resource_path::ResourcePath>::path", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::url::Url as crate::resource_path::ResourcePath>::path", "Argument[self].Field[crate::url::Url::path].Field[crate::option::Option::Some(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::url::Url>::new", "Argument[0]", "ReturnValue.Field[crate::url::Url::uri]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::url::Url>::new_with_quoter", "Argument[0]", "ReturnValue.Field[crate::url::Url::uri]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::url::Url>::path", "Argument[self].Field[crate::url::Url::path].Field[crate::option::Option::Some(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::url::Url>::update", "Argument[0].Reference", "Argument[self].Field[crate::url::Url::uri]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::url::Url>::update_with_quoter", "Argument[0].Reference", "Argument[self].Field[crate::url::Url::uri]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-router", "<crate::url::Url>::uri", "Argument[self].Field[crate::url::Url::uri]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
@@ -0,0 +1,60 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::addr", "Argument[self].Field[crate::TestServer::addr]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::delete", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::delete", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::get", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::get", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::head", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::head", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::options", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::options", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::patch", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::patch", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::post", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::post", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::put", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::put", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::request", "Argument[0]", "ReturnValue.Field[crate::request::ClientRequest::head].Field[crate::requests::head::RequestHead::method]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::request", "Argument[self].Field[crate::TestServer::client].Field[0]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::request", "Argument[self].Field[crate::TestServer::client].Field[crate::client::Client(0)]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::url", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServer>::url", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::client_request_timeout", "Argument[0]", "Argument[self].Field[crate::TestServerConfig::client_request_timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::client_request_timeout", "Argument[0]", "ReturnValue.Field[crate::TestServerConfig::client_request_timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::client_request_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::disable_redirects", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::h1", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::h2", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::listen_address", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::openssl", "Argument[0]", "Argument[self].Field[crate::TestServerConfig::stream].Field[crate::StreamType::Openssl(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::openssl", "Argument[0]", "ReturnValue.Field[crate::TestServerConfig::stream].Field[crate::StreamType::Openssl(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::openssl", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::port", "Argument[0]", "Argument[self].Field[crate::TestServerConfig::port]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::port", "Argument[0]", "ReturnValue.Field[crate::TestServerConfig::port]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::port", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::rustls", "Argument[0]", "Argument[self].Field[crate::TestServerConfig::stream].Field[crate::StreamType::Rustls020(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::rustls", "Argument[0]", "ReturnValue.Field[crate::TestServerConfig::stream].Field[crate::StreamType::Rustls020(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::rustls", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::rustls_021", "Argument[0]", "Argument[self].Field[crate::TestServerConfig::stream].Field[crate::StreamType::Rustls021(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::rustls_021", "Argument[0]", "ReturnValue.Field[crate::TestServerConfig::stream].Field[crate::StreamType::Rustls021(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::rustls_021", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::rustls_0_20", "Argument[0]", "Argument[self].Field[crate::TestServerConfig::stream].Field[crate::StreamType::Rustls020(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::rustls_0_20", "Argument[0]", "ReturnValue.Field[crate::TestServerConfig::stream].Field[crate::StreamType::Rustls020(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::rustls_0_20", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::rustls_0_21", "Argument[0]", "Argument[self].Field[crate::TestServerConfig::stream].Field[crate::StreamType::Rustls021(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::rustls_0_21", "Argument[0]", "ReturnValue.Field[crate::TestServerConfig::stream].Field[crate::StreamType::Rustls021(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::rustls_0_21", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::rustls_0_22", "Argument[0]", "Argument[self].Field[crate::TestServerConfig::stream].Field[crate::StreamType::Rustls022(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::rustls_0_22", "Argument[0]", "ReturnValue.Field[crate::TestServerConfig::stream].Field[crate::StreamType::Rustls022(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::rustls_0_22", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::rustls_0_23", "Argument[0]", "Argument[self].Field[crate::TestServerConfig::stream].Field[crate::StreamType::Rustls023(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::rustls_0_23", "Argument[0]", "ReturnValue.Field[crate::TestServerConfig::stream].Field[crate::StreamType::Rustls023(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::rustls_0_23", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::workers", "Argument[0]", "Argument[self].Field[crate::TestServerConfig::workers]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::workers", "Argument[0]", "ReturnValue.Field[crate::TestServerConfig::workers]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-test", "<crate::TestServerConfig>::workers", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
@@ -0,0 +1,21 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-actors", "<crate::context::HttpContext as crate::context_impl::AsyncContextParts>::parts", "Argument[self].Field[crate::context::HttpContext::inner]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-actors", "<crate::ws::WebsocketContext as crate::context_impl::AsyncContextParts>::parts", "Argument[self].Field[crate::ws::WebsocketContext::inner]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-actors", "<crate::ws::WebsocketContext>::with_codec", "Argument[2]", "ReturnValue.Field[crate::ws::WebsocketContextFut::encoder]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-actors", "<crate::ws::WsResponseBuilder>::codec", "Argument[0]", "Argument[self].Field[crate::ws::WsResponseBuilder::codec].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-actors", "<crate::ws::WsResponseBuilder>::codec", "Argument[0]", "ReturnValue.Field[crate::ws::WsResponseBuilder::codec].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-actors", "<crate::ws::WsResponseBuilder>::codec", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-actors", "<crate::ws::WsResponseBuilder>::frame_size", "Argument[0]", "Argument[self].Field[crate::ws::WsResponseBuilder::frame_size].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-actors", "<crate::ws::WsResponseBuilder>::frame_size", "Argument[0]", "ReturnValue.Field[crate::ws::WsResponseBuilder::frame_size].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-actors", "<crate::ws::WsResponseBuilder>::frame_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-actors", "<crate::ws::WsResponseBuilder>::new", "Argument[0]", "ReturnValue.Field[crate::ws::WsResponseBuilder::actor]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-actors", "<crate::ws::WsResponseBuilder>::new", "Argument[1]", "ReturnValue.Field[crate::ws::WsResponseBuilder::req]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-actors", "<crate::ws::WsResponseBuilder>::new", "Argument[2]", "ReturnValue.Field[crate::ws::WsResponseBuilder::stream]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-actors", "<crate::ws::WsResponseBuilder>::protocols", "Argument[0]", "Argument[self].Field[crate::ws::WsResponseBuilder::protocols].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-actors", "<crate::ws::WsResponseBuilder>::protocols", "Argument[0]", "ReturnValue.Field[crate::ws::WsResponseBuilder::protocols].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-actors", "<crate::ws::WsResponseBuilder>::protocols", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
@@ -0,0 +1,25 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "<crate::route::MethodTypeExt as crate::convert::TryFrom>::try_from", "Argument[0].Reference", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::route::MethodTypeExt::Custom(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "<crate::route::Route>::new", "Argument[0].Field[crate::route::RouteArgs::path]", "ReturnValue.Field[crate::route::Args::path]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "<crate::route::Route>::new", "Argument[1]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::route::Route::ast]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "<crate::route::Route>::new", "Argument[1]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::route::Route::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "crate::connect", "Argument[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "crate::delete", "Argument[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "crate::get", "Argument[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "crate::head", "Argument[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "crate::options", "Argument[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "crate::patch", "Argument[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "crate::post", "Argument[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "crate::put", "Argument[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "crate::route::with_method", "Argument[2]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "crate::route::with_methods", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "crate::route", "Argument[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "crate::routes", "Argument[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "crate::scope::with_scope", "Argument[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "crate::scope", "Argument[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web-codegen", "crate::trace", "Argument[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
@@ -0,0 +1,385 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<_ as crate::guard::Guard>::check", "Argument[0]", "Argument[self].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<_ as crate::guard::Guard>::check", "Argument[self].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<_ as crate::handler::Handler>::call", "Argument[self].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::app::App as crate::IntoServiceFactory>::into_factory", "Argument[self].Field[crate::app::App::default]", "ReturnValue.Field[crate::app_service::AppInit::default]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::app::App as crate::IntoServiceFactory>::into_factory", "Argument[self].Field[crate::app::App::endpoint]", "ReturnValue.Field[crate::app_service::AppInit::endpoint]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::app::App as crate::IntoServiceFactory>::into_factory", "Argument[self].Field[crate::app::App::factory_ref]", "ReturnValue.Field[crate::app_service::AppInit::factory_ref]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::app::App>::app_data", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::app::App>::configure", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::app::App>::data_factory", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::app::App>::default_service", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::app::App>::external_resource", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::app::App>::service", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::app::App>::wrap", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::app::App>::wrap_fn", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::app_service::AppEntry>::new", "Argument[0]", "ReturnValue.Field[crate::app_service::AppEntry::factory]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::app_service::AppInitServiceState>::config", "Argument[self].Field[crate::app_service::AppInitServiceState::config]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::app_service::AppInitServiceState>::pool", "Argument[self].Field[crate::app_service::AppInitServiceState::pool]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::app_service::AppInitServiceState>::rmap", "Argument[self].Field[crate::app_service::AppInitServiceState::rmap]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::AppConfig>::__priv_test_new", "Argument[0]", "ReturnValue.Field[crate::config::AppConfig::secure]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::AppConfig>::__priv_test_new", "Argument[1]", "ReturnValue.Field[crate::config::AppConfig::host]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::AppConfig>::__priv_test_new", "Argument[2]", "ReturnValue.Field[crate::config::AppConfig::addr]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::AppConfig>::host", "Argument[self].Field[crate::config::AppConfig::host]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::AppConfig>::local_addr", "Argument[self].Field[crate::config::AppConfig::addr]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::AppConfig>::new", "Argument[0]", "ReturnValue.Field[crate::config::AppConfig::secure]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::AppConfig>::new", "Argument[1]", "ReturnValue.Field[crate::config::AppConfig::host]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::AppConfig>::new", "Argument[2]", "ReturnValue.Field[crate::config::AppConfig::addr]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::AppConfig>::secure", "Argument[self].Field[crate::config::AppConfig::secure]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::AppService>::clone_config", "Argument[self].Field[crate::config::AppService::config].Reference", "ReturnValue.Field[crate::config::AppService::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::AppService>::clone_config", "Argument[self].Field[crate::config::AppService::config]", "ReturnValue.Field[crate::config::AppService::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::AppService>::config", "Argument[self].Field[crate::config::AppService::config]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::AppService>::into_services", "Argument[self].Field[crate::config::AppService::config]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::AppService>::into_services", "Argument[self].Field[crate::config::AppService::services]", "ReturnValue.Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::AppService>::is_root", "Argument[self].Field[crate::config::AppService::root]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::AppService>::new", "Argument[0]", "ReturnValue.Field[crate::config::AppService::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::AppService>::new", "Argument[1]", "ReturnValue.Field[crate::config::AppService::default]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::ServiceConfig>::app_data", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::ServiceConfig>::configure", "Argument[self]", "Argument[0].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::ServiceConfig>::configure", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::ServiceConfig>::data", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::ServiceConfig>::default_service", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::ServiceConfig>::external_resource", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::ServiceConfig>::route", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::config::ServiceConfig>::service", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::data::Data as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::data::Data(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::data::Data as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::data::Data as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::data::Data(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::data::Data>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::data::Data>::into_inner", "Argument[self].Field[crate::data::Data(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::error::error::Error as crate::convert::From>::from", "Argument[0].Field[crate::types::either::EitherExtractError::Bytes(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::error::error::Error as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::error::error::Error::cause]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::error::error::Error as crate::convert::From>::from", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::error::internal::InternalError as crate::error::response_error::ResponseError>::status_code", "Argument[self].Field[crate::error::internal::InternalError::status].Field[crate::error::internal::InternalErrorType::Status(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::error::internal::InternalError>::from_response", "Argument[0]", "ReturnValue.Field[crate::error::internal::InternalError::cause]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::error::internal::InternalError>::new", "Argument[0]", "ReturnValue.Field[crate::error::internal::InternalError::cause]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::error::internal::InternalError>::new", "Argument[1]", "ReturnValue.Field[crate::error::internal::InternalError::status].Field[crate::error::internal::InternalErrorType::Status(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::guard::AllGuard>::and", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::guard::AnyGuard>::or", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::guard::FnGuard as crate::guard::Guard>::check", "Argument[0]", "Argument[self]", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::guard::FnGuard as crate::guard::Guard>::check", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::guard::acceptable::Acceptable>::match_star_star", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::guard::acceptable::Acceptable>::new", "Argument[0]", "ReturnValue.Field[crate::guard::acceptable::Acceptable::mime]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::guard::host::HostGuard>::scheme", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::accept_encoding::AcceptEncoding>::preference", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::content_disposition::DispositionParam>::as_filename", "Argument[self].Field[crate::http::header::content_disposition::DispositionParam::Filename(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::content_disposition::DispositionParam>::as_filename_ext", "Argument[self].Field[crate::http::header::content_disposition::DispositionParam::FilenameExt(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::content_disposition::DispositionParam>::as_name", "Argument[self].Field[crate::http::header::content_disposition::DispositionParam::Name(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::content_disposition::DispositionParam>::as_unknown", "Argument[self].Field[crate::http::header::content_disposition::DispositionParam::Unknown(1)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::content_disposition::DispositionParam>::as_unknown_ext", "Argument[self].Field[crate::http::header::content_disposition::DispositionParam::UnknownExt(1)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::content_length::ContentLength as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::http::header::content_length::ContentLength(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::content_length::ContentLength>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::content_length::ContentLength>::into_inner", "Argument[self].Field[crate::http::header::content_length::ContentLength(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::entity::EntityTag>::new", "Argument[0]", "ReturnValue.Field[crate::http::header::entity::EntityTag::weak]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::entity::EntityTag>::new", "Argument[1]", "ReturnValue.Field[crate::http::header::entity::EntityTag::tag]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::entity::EntityTag>::new_strong", "Argument[0]", "ReturnValue.Field[crate::http::header::entity::EntityTag::tag]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::entity::EntityTag>::new_weak", "Argument[0]", "ReturnValue.Field[crate::http::header::entity::EntityTag::tag]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::entity::EntityTag>::strong", "Argument[0]", "ReturnValue.Field[crate::http::header::entity::EntityTag::tag]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::entity::EntityTag>::tag", "Argument[self].Field[crate::http::header::entity::EntityTag::tag]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::entity::EntityTag>::weak", "Argument[0]", "ReturnValue.Field[crate::http::header::entity::EntityTag::tag]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::preference::Preference>::into_item", "Argument[self].Field[crate::http::header::preference::Preference::Specific(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::preference::Preference>::item", "Argument[self].Field[crate::http::header::preference::Preference::Specific(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::range::ByteRangeSpec>::to_satisfiable_range", "Argument[self].Reference.Field[crate::http::header::range::ByteRangeSpec::From(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::range::ByteRangeSpec>::to_satisfiable_range", "Argument[self].Reference.Field[crate::http::header::range::ByteRangeSpec::FromTo(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::range::ByteRangeSpec>::to_satisfiable_range", "Argument[self].Reference.Field[crate::http::header::range::ByteRangeSpec::FromTo(1)]", "ReturnValue.Field[crate::option::Option::Some(0)].Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::info::ConnectionInfo>::host", "Argument[self].Field[crate::info::ConnectionInfo::host]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::info::ConnectionInfo>::new", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::info::ConnectionInfo>::scheme", "Argument[self].Field[crate::info::ConnectionInfo::scheme]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::info::PeerAddr>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::info::PeerAddr>::into_inner", "Argument[self].Field[crate::info::PeerAddr(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::compat::Compat>::new", "Argument[0]", "ReturnValue.Field[crate::middleware::compat::Compat::transform]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::condition::Condition>::new", "Argument[0]", "ReturnValue.Field[crate::middleware::condition::Condition::enable]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::condition::Condition>::new", "Argument[1]", "ReturnValue.Field[crate::middleware::condition::Condition::transformer]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::default_headers::DefaultHeaders>::add", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::default_headers::DefaultHeaders>::add_content_type", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::default_headers::DefaultHeaders>::header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::err_handlers::ErrorHandlers>::handler", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::err_handlers::ErrorHandlersMiddleware as crate::Service>::call", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::from_fn::MiddlewareFnService as crate::Service>::call", "Argument[0]", "Argument[self]", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::from_fn::MiddlewareFnService as crate::Service>::call", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::logger::FormatDisplay as crate::fmt::Display>::fmt", "Argument[0]", "Argument[self]", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::logger::FormatDisplay as crate::fmt::Display>::fmt", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::logger::Logger>::custom_request_replace", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::logger::Logger>::custom_response_replace", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::logger::Logger>::exclude", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::logger::Logger>::exclude_regex", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::logger::Logger>::log_level", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::logger::Logger>::log_target", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::redirect::Redirect>::permanent", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::redirect::Redirect>::see_other", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::redirect::Redirect>::temporary", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::redirect::Redirect>::using_status_code", "Argument[0]", "Argument[self].Field[crate::redirect::Redirect::status_code]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::redirect::Redirect>::using_status_code", "Argument[0]", "ReturnValue.Field[crate::redirect::Redirect::status_code]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::redirect::Redirect>::using_status_code", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::request::HttpRequestPool>::with_capacity", "Argument[0]", "ReturnValue.Field[crate::request::HttpRequestPool::cap]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::request_data::ReqData as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::request_data::ReqData as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::request_data::ReqData(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::request_data::ReqData>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::request_data::ReqData>::into_inner", "Argument[self].Field[crate::request_data::ReqData(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::resource::Resource>::add_guards", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::resource::Resource>::app_data", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::resource::Resource>::default_service", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::resource::Resource>::guard", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::resource::Resource>::name", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::resource::Resource>::route", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::resource::Resource>::to", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::resource::Resource>::wrap", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::resource::Resource>::wrap_fn", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::builder::HttpResponseBuilder>::append_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::builder::HttpResponseBuilder>::content_type", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::builder::HttpResponseBuilder>::cookie", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::builder::HttpResponseBuilder>::force_close", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::builder::HttpResponseBuilder>::header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::builder::HttpResponseBuilder>::insert_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::builder::HttpResponseBuilder>::keep_alive", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::builder::HttpResponseBuilder>::no_chunking", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::builder::HttpResponseBuilder>::reason", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::builder::HttpResponseBuilder>::set_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::builder::HttpResponseBuilder>::status", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::builder::HttpResponseBuilder>::take", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::builder::HttpResponseBuilder>::upgrade", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::customize_responder::CustomizeResponder>::add_cookie", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::customize_responder::CustomizeResponder>::append_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::customize_responder::CustomizeResponder>::insert_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::customize_responder::CustomizeResponder>::new", "Argument[0]", "ReturnValue.Field[crate::response::customize_responder::CustomizeResponder::inner].Field[crate::response::customize_responder::CustomizeResponderInner::responder]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::customize_responder::CustomizeResponder>::with_status", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse as crate::convert::From>::from", "Argument[0].Field[crate::service::ServiceResponse::response]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::response::response::HttpResponse::res]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse as crate::response::responder::Responder>::respond_to", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::body", "Argument[self].Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::body]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::drop_body", "Argument[self].Field[crate::response::response::HttpResponse::error]", "ReturnValue.Field[crate::response::response::HttpResponse::error]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::drop_body", "Argument[self].Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::extensions]", "ReturnValue.Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::extensions]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::drop_body", "Argument[self].Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::head]", "ReturnValue.Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::head]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::error", "Argument[self].Field[crate::response::response::HttpResponse::error].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::head", "Argument[self].Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::head]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::head_mut", "Argument[self].Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::head]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::into_body", "Argument[self].Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::body]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::into_parts", "Argument[self].Field[crate::response::response::HttpResponse::error]", "ReturnValue.Field[0].Field[crate::response::response::HttpResponse::error]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::into_parts", "Argument[self].Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::body]", "ReturnValue.Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::map_body", "Argument[0].ReturnValue", "ReturnValue.Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::body]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::map_into_boxed_body", "Argument[self].Field[crate::response::response::HttpResponse::error]", "ReturnValue.Field[crate::response::response::HttpResponse::error]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::map_into_boxed_body", "Argument[self].Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::extensions]", "ReturnValue.Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::extensions]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::map_into_boxed_body", "Argument[self].Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::head]", "ReturnValue.Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::head]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::map_into_left_body", "Argument[self].Field[crate::response::response::HttpResponse::error]", "ReturnValue.Field[crate::response::response::HttpResponse::error]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::map_into_left_body", "Argument[self].Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::extensions]", "ReturnValue.Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::extensions]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::map_into_left_body", "Argument[self].Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::head]", "ReturnValue.Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::head]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::map_into_right_body", "Argument[self].Field[crate::response::response::HttpResponse::error]", "ReturnValue.Field[crate::response::response::HttpResponse::error]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::map_into_right_body", "Argument[self].Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::extensions]", "ReturnValue.Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::extensions]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::map_into_right_body", "Argument[self].Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::head]", "ReturnValue.Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::head]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::set_body", "Argument[0]", "ReturnValue.Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::body]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::set_body", "Argument[self].Field[crate::response::response::HttpResponse::error]", "ReturnValue.Field[crate::response::response::HttpResponse::error]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::set_body", "Argument[self].Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::extensions]", "ReturnValue.Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::extensions]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::set_body", "Argument[self].Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::head]", "ReturnValue.Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::head]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::response::response::HttpResponse>::with_body", "Argument[1]", "ReturnValue.Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::body]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::responses::response::Response as crate::convert::From>::from", "Argument[0].Field[crate::response::response::HttpResponse::res]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::responses::response::Response as crate::response::responder::Responder>::respond_to", "Argument[self].Field[crate::service::ServiceResponse::response]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::responses::response::Response as crate::response::responder::Responder>::respond_to", "Argument[self]", "ReturnValue.Field[crate::response::response::HttpResponse::res]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::rmap::ResourceMap>::match_name", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::rmap::ResourceMap>::match_pattern", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::rmap::ResourceMap>::new", "Argument[0]", "ReturnValue.Field[crate::rmap::ResourceMap::pattern]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::route::Route>::guard", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::route::Route>::method", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::route::Route>::service", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::route::Route>::to", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::route::Route>::wrap", "Argument[self].Field[crate::route::Route::guards]", "ReturnValue.Field[crate::route::Route::guards]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::scope::Scope>::app_data", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::scope::Scope>::configure", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::scope::Scope>::default_service", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::scope::Scope>::guard", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::scope::Scope>::new", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::scope::Scope>::service", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::scope::Scope>::wrap", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::scope::Scope>::wrap_fn", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::backlog", "Argument[0]", "Argument[self].Field[crate::server::HttpServer::backlog]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::backlog", "Argument[0]", "ReturnValue.Field[crate::server::HttpServer::backlog]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::backlog", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::bind", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::bind_auto_h2c", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::bind_openssl", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::bind_rustls", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::bind_rustls_021", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::bind_rustls_0_22", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::bind_rustls_0_23", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::bind_uds", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::client_disconnect_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::client_request_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::disable_signals", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::keep_alive", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::listen", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::listen_auto_h2c", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::listen_uds", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::max_connection_rate", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::max_connections", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::new", "Argument[0]", "ReturnValue.Field[crate::server::HttpServer::factory]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::on_connect", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::server_hostname", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::shutdown_signal", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::shutdown_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::system_exit", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::tls_handshake_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::worker_max_blocking_threads", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::server::HttpServer>::workers", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceFactoryWrapper>::new", "Argument[0]", "ReturnValue.Field[crate::service::ServiceFactoryWrapper::factory].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceRequest as crate::http_message::HttpMessage>::take_payload", "Argument[self].Field[crate::service::ServiceRequest::payload].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceRequest as crate::http_message::HttpMessage>::take_payload", "Argument[self].Field[crate::service::ServiceRequest::payload]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceRequest>::error_response", "Argument[self].Field[crate::service::ServiceRequest::req]", "ReturnValue.Field[crate::service::ServiceResponse::request]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceRequest>::from_parts", "Argument[0]", "ReturnValue.Field[crate::service::ServiceRequest::req]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceRequest>::from_parts", "Argument[1]", "ReturnValue.Field[crate::service::ServiceRequest::payload]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceRequest>::from_request", "Argument[0]", "ReturnValue.Field[crate::service::ServiceRequest::req]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceRequest>::guard_ctx", "Argument[self]", "ReturnValue.Field[crate::guard::GuardContext::req]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceRequest>::into_parts", "Argument[self].Field[crate::service::ServiceRequest::payload]", "ReturnValue.Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceRequest>::into_parts", "Argument[self].Field[crate::service::ServiceRequest::req]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceRequest>::into_response", "Argument[self].Field[crate::service::ServiceRequest::req]", "ReturnValue.Field[crate::service::ServiceResponse::request]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceRequest>::new", "Argument[0]", "ReturnValue.Field[crate::service::ServiceRequest::req]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceRequest>::new", "Argument[1]", "ReturnValue.Field[crate::service::ServiceRequest::payload]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceRequest>::parts", "Argument[self].Field[crate::service::ServiceRequest::payload]", "ReturnValue.Field[1].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceRequest>::parts", "Argument[self].Field[crate::service::ServiceRequest::req]", "ReturnValue.Field[0].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceRequest>::parts_mut", "Argument[self].Field[crate::service::ServiceRequest::payload]", "ReturnValue.Field[1].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceRequest>::parts_mut", "Argument[self].Field[crate::service::ServiceRequest::req]", "ReturnValue.Field[0].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceRequest>::request", "Argument[self].Field[crate::service::ServiceRequest::req]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceRequest>::set_payload", "Argument[0]", "Argument[self].Field[crate::service::ServiceRequest::payload]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse as crate::middleware::compat::MapServiceResponseBody>::map_body", "Argument[self].Field[crate::service::ServiceResponse::request]", "ReturnValue.Field[crate::service::ServiceResponse::request]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse as crate::middleware::compat::MapServiceResponseBody>::map_body", "Argument[self].Field[crate::service::ServiceResponse::response].Field[crate::response::response::HttpResponse::error]", "ReturnValue.Field[crate::service::ServiceResponse::response].Field[crate::response::response::HttpResponse::error]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::error_response", "Argument[self].Field[crate::service::ServiceResponse::request]", "ReturnValue.Field[crate::service::ServiceResponse::request]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::from_err", "Argument[1]", "ReturnValue.Field[crate::service::ServiceResponse::request]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::into_parts", "Argument[self].Field[crate::service::ServiceResponse::request]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::into_parts", "Argument[self].Field[crate::service::ServiceResponse::response]", "ReturnValue.Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::into_response", "Argument[0]", "ReturnValue.Field[crate::service::ServiceResponse::response]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::into_response", "Argument[self].Field[crate::service::ServiceResponse::request]", "ReturnValue.Field[crate::service::ServiceResponse::request]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::map_body", "Argument[self].Field[crate::service::ServiceResponse::request]", "ReturnValue.Field[crate::service::ServiceResponse::request]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::map_body", "Argument[self].Field[crate::service::ServiceResponse::response].Field[crate::response::response::HttpResponse::error]", "ReturnValue.Field[crate::service::ServiceResponse::response].Field[crate::response::response::HttpResponse::error]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::map_into_boxed_body", "Argument[self].Field[crate::service::ServiceResponse::request]", "ReturnValue.Field[crate::service::ServiceResponse::request]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::map_into_boxed_body", "Argument[self].Field[crate::service::ServiceResponse::response].Field[crate::response::response::HttpResponse::error]", "ReturnValue.Field[crate::service::ServiceResponse::response].Field[crate::response::response::HttpResponse::error]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::map_into_left_body", "Argument[self].Field[crate::service::ServiceResponse::request]", "ReturnValue.Field[crate::service::ServiceResponse::request]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::map_into_left_body", "Argument[self].Field[crate::service::ServiceResponse::response].Field[crate::response::response::HttpResponse::error]", "ReturnValue.Field[crate::service::ServiceResponse::response].Field[crate::response::response::HttpResponse::error]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::map_into_right_body", "Argument[self].Field[crate::service::ServiceResponse::request]", "ReturnValue.Field[crate::service::ServiceResponse::request]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::map_into_right_body", "Argument[self].Field[crate::service::ServiceResponse::response].Field[crate::response::response::HttpResponse::error]", "ReturnValue.Field[crate::service::ServiceResponse::response].Field[crate::response::response::HttpResponse::error]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::new", "Argument[0]", "ReturnValue.Field[crate::service::ServiceResponse::request]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::new", "Argument[1]", "ReturnValue.Field[crate::service::ServiceResponse::response]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::request", "Argument[self].Field[crate::service::ServiceResponse::request]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::response", "Argument[self].Field[crate::service::ServiceResponse::response]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::ServiceResponse>::response_mut", "Argument[self].Field[crate::service::ServiceResponse::response]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::WebService>::finish", "Argument[self].Field[crate::service::WebService::guards]", "ReturnValue.Field[crate::service::WebServiceImpl::guards]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::WebService>::finish", "Argument[self].Field[crate::service::WebService::name]", "ReturnValue.Field[crate::service::WebServiceImpl::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::WebService>::finish", "Argument[self].Field[crate::service::WebService::rdef]", "ReturnValue.Field[crate::service::WebServiceImpl::rdef]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::WebService>::guard", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::service::WebService>::name", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::test::test_request::TestRequest>::app_data", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::test::test_request::TestRequest>::append_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::test::test_request::TestRequest>::cookie", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::test::test_request::TestRequest>::data", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::test::test_request::TestRequest>::insert_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::test::test_request::TestRequest>::method", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::test::test_request::TestRequest>::param", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::test::test_request::TestRequest>::peer_addr", "Argument[0]", "Argument[self].Field[crate::test::test_request::TestRequest::peer_addr].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::test::test_request::TestRequest>::peer_addr", "Argument[0]", "ReturnValue.Field[crate::test::test_request::TestRequest::peer_addr].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::test::test_request::TestRequest>::peer_addr", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::test::test_request::TestRequest>::rmap", "Argument[0]", "Argument[self].Field[crate::test::test_request::TestRequest::rmap]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::test::test_request::TestRequest>::rmap", "Argument[0]", "ReturnValue.Field[crate::test::test_request::TestRequest::rmap]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::test::test_request::TestRequest>::rmap", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::test::test_request::TestRequest>::set_form", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::test::test_request::TestRequest>::set_json", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::test::test_request::TestRequest>::set_payload", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::test::test_request::TestRequest>::uri", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::test::test_request::TestRequest>::version", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::thin_data::ThinData as crate::convert::AsMut>::as_mut", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::thin_data::ThinData as crate::convert::AsMut>::as_mut", "Argument[self].Field[crate::thin_data::ThinData(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::thin_data::ThinData as crate::convert::AsRef>::as_ref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::thin_data::ThinData as crate::convert::AsRef>::as_ref", "Argument[self].Field[crate::thin_data::ThinData(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::thin_data::ThinData as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::thin_data::ThinData as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::thin_data::ThinData(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::thin_data::ThinData as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::thin_data::ThinData as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[crate::thin_data::ThinData(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::either::Either as crate::extract::FromRequest>::from_request", "Argument[0].Reference", "ReturnValue.Field[crate::types::either::EitherExtractFut::req]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::either::Either>::unwrap_left", "Argument[self].Field[crate::types::either::Either::Left(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::either::Either>::unwrap_right", "Argument[self].Field[crate::types::either::Either::Right(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::form::Form as crate::extract::FromRequest>::from_request", "Argument[0].Reference", "ReturnValue.Field[crate::types::form::FormExtractFut::req]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::form::Form as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::form::Form as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::types::form::Form(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::form::Form as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::form::Form as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[crate::types::form::Form(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::form::Form>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::form::Form>::into_inner", "Argument[self].Field[crate::types::form::Form(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::form::FormConfig>::error_handler", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::form::FormConfig>::limit", "Argument[0]", "Argument[self].Field[crate::types::form::FormConfig::limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::form::FormConfig>::limit", "Argument[0]", "ReturnValue.Field[crate::types::form::FormConfig::limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::form::FormConfig>::limit", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::form::UrlEncoded>::limit", "Argument[0]", "Argument[self].Field[crate::types::form::UrlEncoded::limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::form::UrlEncoded>::limit", "Argument[0]", "ReturnValue.Field[crate::types::form::UrlEncoded::limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::form::UrlEncoded>::limit", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::header::Header as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::header::Header as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::types::header::Header(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::header::Header as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::header::Header as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[crate::types::header::Header(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::header::Header>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::header::Header>::into_inner", "Argument[self].Field[crate::types::header::Header(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::html::Html as crate::response::responder::Responder>::respond_to", "Argument[self].Field[0]", "ReturnValue.Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::body]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::html::Html as crate::response::responder::Responder>::respond_to", "Argument[self].Field[crate::types::html::Html(0)]", "ReturnValue.Field[crate::response::response::HttpResponse::res].Field[crate::responses::response::Response::body]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::json::Json as crate::extract::FromRequest>::from_request", "Argument[0].Reference", "ReturnValue.Field[crate::types::json::JsonExtractFut::req].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::json::Json as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::json::Json as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::types::json::Json(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::json::Json as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::json::Json as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[crate::types::json::Json(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::json::Json>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::json::Json>::into_inner", "Argument[self].Field[crate::types::json::Json(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::json::JsonBody>::limit", "Argument[0]", "ReturnValue.Field[crate::types::json::JsonBody::Body::limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::json::JsonConfig>::content_type", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::json::JsonConfig>::content_type_required", "Argument[0]", "Argument[self].Field[crate::types::json::JsonConfig::content_type_required]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::json::JsonConfig>::content_type_required", "Argument[0]", "ReturnValue.Field[crate::types::json::JsonConfig::content_type_required]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::json::JsonConfig>::content_type_required", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::json::JsonConfig>::error_handler", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::json::JsonConfig>::limit", "Argument[0]", "Argument[self].Field[crate::types::json::JsonConfig::limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::json::JsonConfig>::limit", "Argument[0]", "ReturnValue.Field[crate::types::json::JsonConfig::limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::json::JsonConfig>::limit", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::path::Path>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::path::Path>::into_inner", "Argument[self].Field[crate::types::path::Path(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::path::PathConfig>::error_handler", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::payload::HttpMessageBody>::limit", "Argument[0]", "Argument[self].Field[crate::types::payload::HttpMessageBody::limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::payload::HttpMessageBody>::limit", "Argument[0]", "ReturnValue.Field[crate::types::payload::HttpMessageBody::limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::payload::HttpMessageBody>::limit", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::payload::Payload>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::payload::Payload>::into_inner", "Argument[self].Field[crate::types::payload::Payload(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::payload::PayloadConfig>::limit", "Argument[0]", "Argument[self].Field[crate::types::payload::PayloadConfig::limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::payload::PayloadConfig>::limit", "Argument[0]", "ReturnValue.Field[crate::types::payload::PayloadConfig::limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::payload::PayloadConfig>::limit", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::payload::PayloadConfig>::mimetype", "Argument[0]", "Argument[self].Field[crate::types::payload::PayloadConfig::mimetype].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::payload::PayloadConfig>::mimetype", "Argument[0]", "ReturnValue.Field[crate::types::payload::PayloadConfig::mimetype].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::payload::PayloadConfig>::mimetype", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::payload::PayloadConfig>::new", "Argument[0]", "ReturnValue.Field[crate::types::payload::PayloadConfig::limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::query::Query as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::query::Query as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::types::query::Query(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::query::Query as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::query::Query as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[crate::types::query::Query(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::query::Query>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::query::Query>::into_inner", "Argument[self].Field[crate::types::query::Query(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::query::QueryConfig>::error_handler", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::readlines::Readlines>::limit", "Argument[0]", "Argument[self].Field[crate::types::readlines::Readlines::limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::readlines::Readlines>::limit", "Argument[0]", "ReturnValue.Field[crate::types::readlines::Readlines::limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::types::readlines::Readlines>::limit", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<dyn crate::error::macros::tests::MB>::downcast_mut", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<dyn crate::error::macros::tests::MB>::downcast_ref", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<dyn crate::error::response_error::ResponseError>::downcast_mut", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<dyn crate::error::response_error::ResponseError>::downcast_ref", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<usize as crate::convert::From>::from", "Argument[0].Field[crate::http::header::content_length::ContentLength(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "crate::guard::Method", "Argument[0]", "ReturnValue.Field[crate::guard::MethodGuard(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "crate::guard::fn_guard", "Argument[0]", "ReturnValue.Field[crate::guard::FnGuard(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "crate::web::scope", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: sinkModel
|
||||
data:
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::entity::EntityTag>::new", "Argument[1]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::entity::EntityTag>::new_strong", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::entity::EntityTag>::new_weak", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::entity::EntityTag>::strong", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::http::header::entity::EntityTag>::weak", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::logger::Format>::new", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::logger::Logger>::custom_request_replace", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::logger::Logger>::custom_response_replace", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::middleware::logger::Logger>::new", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:actix-web", "<crate::redirect::Redirect as crate::response::responder::Responder>::respond_to", "Argument[self]", "log-injection", "df-generated"]
|
||||
@@ -0,0 +1,226 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::add_default_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::connector", "Argument[0]", "ReturnValue.Field[crate::builder::ClientBuilder::connector]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::disable_redirects", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::disable_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::initial_connection_window_size", "Argument[0]", "Argument[self].Field[crate::builder::ClientBuilder::conn_window_size].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::initial_connection_window_size", "Argument[0]", "ReturnValue.Field[crate::builder::ClientBuilder::conn_window_size].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::initial_connection_window_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::initial_window_size", "Argument[0]", "Argument[self].Field[crate::builder::ClientBuilder::stream_window_size].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::initial_window_size", "Argument[0]", "ReturnValue.Field[crate::builder::ClientBuilder::stream_window_size].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::initial_window_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::local_address", "Argument[0]", "Argument[self].Field[crate::builder::ClientBuilder::local_address].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::local_address", "Argument[0]", "ReturnValue.Field[crate::builder::ClientBuilder::local_address].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::local_address", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::max_http_version", "Argument[0]", "Argument[self].Field[crate::builder::ClientBuilder::max_http_version].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::max_http_version", "Argument[0]", "ReturnValue.Field[crate::builder::ClientBuilder::max_http_version].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::max_http_version", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::max_redirects", "Argument[0]", "Argument[self].Field[crate::builder::ClientBuilder::max_redirects]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::max_redirects", "Argument[0]", "ReturnValue.Field[crate::builder::ClientBuilder::max_redirects]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::max_redirects", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::no_default_headers", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::timeout", "Argument[0]", "Argument[self].Field[crate::builder::ClientBuilder::timeout].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::timeout", "Argument[0]", "ReturnValue.Field[crate::builder::ClientBuilder::timeout].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::builder::ClientBuilder>::wrap", "Argument[0]", "ReturnValue.Field[crate::builder::ClientBuilder::middleware].Field[crate::middleware::NestTransform::parent]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::Client>::delete", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::Client>::get", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::Client>::head", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::Client>::options", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::Client>::patch", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::Client>::post", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::Client>::put", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::Client>::request", "Argument[0]", "ReturnValue.Field[crate::request::ClientRequest::head].Field[crate::requests::head::RequestHead::method]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::Client>::request_from", "Argument[1].Field[crate::requests::head::RequestHead::method].Reference", "ReturnValue.Field[crate::request::ClientRequest::head].Field[crate::requests::head::RequestHead::method]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::Client>::request_from", "Argument[1].Field[crate::requests::head::RequestHead::method]", "ReturnValue.Field[crate::request::ClientRequest::head].Field[crate::requests::head::RequestHead::method]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::Client>::ws", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::config::ConnectorConfig>::no_disconnect_timeout", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connection::H2ConnectionInner>::new", "Argument[0]", "ReturnValue.Field[crate::client::connection::H2ConnectionInner::sender]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::conn_keep_alive", "Argument[0]", "Argument[self].Field[crate::client::connector::Connector::config].Field[crate::client::config::ConnectorConfig::conn_keep_alive]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::conn_keep_alive", "Argument[0]", "ReturnValue.Field[crate::client::connector::Connector::config].Field[crate::client::config::ConnectorConfig::conn_keep_alive]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::conn_keep_alive", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::conn_lifetime", "Argument[0]", "Argument[self].Field[crate::client::connector::Connector::config].Field[crate::client::config::ConnectorConfig::conn_lifetime]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::conn_lifetime", "Argument[0]", "ReturnValue.Field[crate::client::connector::Connector::config].Field[crate::client::config::ConnectorConfig::conn_lifetime]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::conn_lifetime", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::connector", "Argument[0]", "ReturnValue.Field[crate::client::connector::Connector::connector]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::connector", "Argument[self].Field[crate::client::connector::Connector::config]", "ReturnValue.Field[crate::client::connector::Connector::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::connector", "Argument[self].Field[crate::client::connector::Connector::tls]", "ReturnValue.Field[crate::client::connector::Connector::tls]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::disconnect_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::finish", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::handshake_timeout", "Argument[0]", "Argument[self].Field[crate::client::connector::Connector::config].Field[crate::client::config::ConnectorConfig::handshake_timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::handshake_timeout", "Argument[0]", "ReturnValue.Field[crate::client::connector::Connector::config].Field[crate::client::config::ConnectorConfig::handshake_timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::handshake_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::initial_connection_window_size", "Argument[0]", "Argument[self].Field[crate::client::connector::Connector::config].Field[crate::client::config::ConnectorConfig::conn_window_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::initial_connection_window_size", "Argument[0]", "ReturnValue.Field[crate::client::connector::Connector::config].Field[crate::client::config::ConnectorConfig::conn_window_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::initial_connection_window_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::initial_window_size", "Argument[0]", "Argument[self].Field[crate::client::connector::Connector::config].Field[crate::client::config::ConnectorConfig::stream_window_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::initial_window_size", "Argument[0]", "ReturnValue.Field[crate::client::connector::Connector::config].Field[crate::client::config::ConnectorConfig::stream_window_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::initial_window_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::limit", "Argument[0]", "Argument[self].Field[crate::client::connector::Connector::config].Field[crate::client::config::ConnectorConfig::limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::limit", "Argument[0]", "ReturnValue.Field[crate::client::connector::Connector::config].Field[crate::client::config::ConnectorConfig::limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::limit", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::local_address", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::max_http_version", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::openssl", "Argument[0]", "Argument[self].Field[crate::client::connector::Connector::tls].Field[crate::client::connector::OurTlsConnector::Openssl(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::openssl", "Argument[0]", "ReturnValue.Field[crate::client::connector::Connector::tls].Field[crate::client::connector::OurTlsConnector::Openssl(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::openssl", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::rustls", "Argument[0]", "Argument[self].Field[crate::client::connector::Connector::tls].Field[crate::client::connector::OurTlsConnector::Rustls020(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::rustls", "Argument[0]", "ReturnValue.Field[crate::client::connector::Connector::tls].Field[crate::client::connector::OurTlsConnector::Rustls020(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::rustls", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::rustls_021", "Argument[0]", "Argument[self].Field[crate::client::connector::Connector::tls].Field[crate::client::connector::OurTlsConnector::Rustls021(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::rustls_021", "Argument[0]", "ReturnValue.Field[crate::client::connector::Connector::tls].Field[crate::client::connector::OurTlsConnector::Rustls021(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::rustls_021", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::rustls_0_22", "Argument[0]", "Argument[self].Field[crate::client::connector::Connector::tls].Field[crate::client::connector::OurTlsConnector::Rustls022(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::rustls_0_22", "Argument[0]", "ReturnValue.Field[crate::client::connector::Connector::tls].Field[crate::client::connector::OurTlsConnector::Rustls022(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::rustls_0_22", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::rustls_0_23", "Argument[0]", "Argument[self].Field[crate::client::connector::Connector::tls].Field[crate::client::connector::OurTlsConnector::Rustls023(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::rustls_0_23", "Argument[0]", "ReturnValue.Field[crate::client::connector::Connector::tls].Field[crate::client::connector::OurTlsConnector::Rustls023(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::rustls_0_23", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::ssl", "Argument[0]", "Argument[self].Field[crate::client::connector::Connector::tls].Field[crate::client::connector::OurTlsConnector::Openssl(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::ssl", "Argument[0]", "ReturnValue.Field[crate::client::connector::Connector::tls].Field[crate::client::connector::OurTlsConnector::Openssl(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::ssl", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::timeout", "Argument[0]", "Argument[self].Field[crate::client::connector::Connector::config].Field[crate::client::config::ConnectorConfig::timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::timeout", "Argument[0]", "ReturnValue.Field[crate::client::connector::Connector::config].Field[crate::client::config::ConnectorConfig::timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::Connector>::timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::TlsConnectorService as crate::Service>::call", "Argument[self].Field[crate::client::connector::TlsConnectorService::timeout]", "ReturnValue.Field[crate::client::connector::TlsConnectorFuture::TcpConnect::timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::TlsConnectorService as crate::Service>::call", "Argument[self].Field[crate::client::connector::TlsConnectorService::tls_service].Reference", "ReturnValue.Field[crate::client::connector::TlsConnectorFuture::TcpConnect::tls_service].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::connector::TlsConnectorService as crate::Service>::call", "Argument[self].Field[crate::client::connector::TlsConnectorService::tls_service]", "ReturnValue.Field[crate::client::connector::TlsConnectorFuture::TcpConnect::tls_service].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::error::ConnectError as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::client::error::ConnectError::Io(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::error::ConnectError as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::client::error::ConnectError::Resolver(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::error::FreezeRequestError as crate::convert::From>::from", "Argument[0].Field[crate::sender::PrepForSendingError::Http(0)]", "ReturnValue.Field[crate::client::error::FreezeRequestError::Http(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::error::FreezeRequestError as crate::convert::From>::from", "Argument[0].Field[crate::sender::PrepForSendingError::Url(0)]", "ReturnValue.Field[crate::client::error::FreezeRequestError::Url(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::error::SendRequestError as crate::convert::From>::from", "Argument[0].Field[crate::client::error::FreezeRequestError::Custom(0)]", "ReturnValue.Field[crate::client::error::SendRequestError::Custom(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::error::SendRequestError as crate::convert::From>::from", "Argument[0].Field[crate::client::error::FreezeRequestError::Custom(1)]", "ReturnValue.Field[crate::client::error::SendRequestError::Custom(1)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::error::SendRequestError as crate::convert::From>::from", "Argument[0].Field[crate::sender::PrepForSendingError::Http(0)]", "ReturnValue.Field[crate::client::error::SendRequestError::Http(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::error::SendRequestError as crate::convert::From>::from", "Argument[0].Field[crate::sender::PrepForSendingError::Url(0)]", "ReturnValue.Field[crate::client::error::SendRequestError::Url(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::pool::ConnectionPool>::new", "Argument[0]", "ReturnValue.Field[crate::client::pool::ConnectionPool::connector]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::pool::ConnectionPoolInner as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::pool::ConnectionPoolInner as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::client::pool::ConnectionPoolInner(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::client::pool::Key as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::client::pool::Key::authority]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::connect::ConnectResponse>::into_client_response", "Argument[self].Field[crate::connect::ConnectResponse::Client(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::connect::ConnectResponse>::into_tunnel_response", "Argument[self].Field[crate::connect::ConnectResponse::Tunnel(0)]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::connect::ConnectResponse>::into_tunnel_response", "Argument[self].Field[crate::connect::ConnectResponse::Tunnel(1)]", "ReturnValue.Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::connect::DefaultConnector as crate::Service>::call", "Argument[0]", "ReturnValue.Field[crate::connect::ConnectRequestFuture::Connection::req].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::connect::DefaultConnector>::new", "Argument[0]", "ReturnValue.Field[crate::connect::DefaultConnector::connector]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::frozen::FrozenClientRequest>::extra_header", "Argument[self].Reference", "ReturnValue.Field[crate::frozen::FrozenSendBuilder::req]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::frozen::FrozenClientRequest>::extra_headers", "Argument[0]", "ReturnValue.Field[crate::frozen::FrozenSendBuilder::extra_headers]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::frozen::FrozenClientRequest>::extra_headers", "Argument[self].Reference", "ReturnValue.Field[crate::frozen::FrozenSendBuilder::req]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::frozen::FrozenClientRequest>::send", "Argument[self].Field[crate::frozen::FrozenClientRequest::response_decompress]", "ReturnValue.Field[crate::sender::SendClientRequest::Fut(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::frozen::FrozenClientRequest>::send_body", "Argument[self].Field[crate::frozen::FrozenClientRequest::response_decompress]", "ReturnValue.Field[crate::sender::SendClientRequest::Fut(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::frozen::FrozenClientRequest>::send_form", "Argument[self].Field[crate::frozen::FrozenClientRequest::response_decompress]", "ReturnValue.Field[crate::sender::SendClientRequest::Fut(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::frozen::FrozenClientRequest>::send_json", "Argument[self].Field[crate::frozen::FrozenClientRequest::response_decompress]", "ReturnValue.Field[crate::sender::SendClientRequest::Fut(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::frozen::FrozenClientRequest>::send_stream", "Argument[self].Field[crate::frozen::FrozenClientRequest::response_decompress]", "ReturnValue.Field[crate::sender::SendClientRequest::Fut(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::frozen::FrozenSendBuilder>::extra_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::frozen::FrozenSendBuilder>::new", "Argument[0]", "ReturnValue.Field[crate::frozen::FrozenSendBuilder::req]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::frozen::FrozenSendBuilder>::new", "Argument[1]", "ReturnValue.Field[crate::frozen::FrozenSendBuilder::extra_headers]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::frozen::FrozenSendBuilder>::send", "Argument[self].Field[crate::frozen::FrozenSendBuilder::req].Field[crate::frozen::FrozenClientRequest::response_decompress]", "ReturnValue.Field[crate::sender::SendClientRequest::Fut(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::frozen::FrozenSendBuilder>::send_body", "Argument[self].Field[crate::frozen::FrozenSendBuilder::req].Field[crate::frozen::FrozenClientRequest::response_decompress]", "ReturnValue.Field[crate::sender::SendClientRequest::Fut(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::frozen::FrozenSendBuilder>::send_form", "Argument[self].Field[crate::frozen::FrozenSendBuilder::req].Field[crate::frozen::FrozenClientRequest::response_decompress]", "ReturnValue.Field[crate::sender::SendClientRequest::Fut(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::frozen::FrozenSendBuilder>::send_json", "Argument[self].Field[crate::frozen::FrozenSendBuilder::req].Field[crate::frozen::FrozenClientRequest::response_decompress]", "ReturnValue.Field[crate::sender::SendClientRequest::Fut(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::frozen::FrozenSendBuilder>::send_stream", "Argument[self].Field[crate::frozen::FrozenSendBuilder::req].Field[crate::frozen::FrozenClientRequest::response_decompress]", "ReturnValue.Field[crate::sender::SendClientRequest::Fut(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::middleware::NestTransform>::new", "Argument[0]", "ReturnValue.Field[crate::middleware::NestTransform::child]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::middleware::NestTransform>::new", "Argument[1]", "ReturnValue.Field[crate::middleware::NestTransform::parent]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::middleware::redirect::Redirect as crate::middleware::Transform>::new_transform", "Argument[self].Field[crate::middleware::redirect::Redirect::max_redirect_times]", "ReturnValue.Field[crate::middleware::redirect::RedirectService::max_redirect_times]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::middleware::redirect::Redirect>::max_redirect_times", "Argument[0]", "Argument[self].Field[crate::middleware::redirect::Redirect::max_redirect_times]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::middleware::redirect::Redirect>::max_redirect_times", "Argument[0]", "ReturnValue.Field[crate::middleware::redirect::Redirect::max_redirect_times]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::middleware::redirect::Redirect>::max_redirect_times", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::middleware::redirect::RedirectService as crate::Service>::call", "Argument[0].Field[crate::connect::ConnectRequest::Client(1)].Field[crate::any_body::AnyBody::Bytes::body]", "ReturnValue.Field[crate::middleware::redirect::RedirectServiceFuture::Client::body].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::middleware::redirect::RedirectService as crate::Service>::call", "Argument[0].Field[crate::connect::ConnectRequest::Client(2)]", "ReturnValue.Field[crate::middleware::redirect::RedirectServiceFuture::Client::addr]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::middleware::redirect::RedirectService as crate::Service>::call", "Argument[self].Field[crate::middleware::redirect::RedirectService::max_redirect_times]", "ReturnValue.Field[crate::middleware::redirect::RedirectServiceFuture::Client::max_redirect_times]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::address", "Argument[0]", "Argument[self].Field[crate::request::ClientRequest::addr].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::address", "Argument[0]", "ReturnValue.Field[crate::request::ClientRequest::addr].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::address", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::append_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::basic_auth", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::bearer_auth", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::camel_case", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::content_length", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::content_type", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::cookie", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::force_close", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::get_method", "Argument[self].Field[crate::request::ClientRequest::head].Field[crate::requests::head::RequestHead::method]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::get_peer_addr", "Argument[self].Field[crate::request::ClientRequest::head].Field[crate::requests::head::RequestHead::peer_addr]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::get_uri", "Argument[self].Field[crate::request::ClientRequest::head].Field[crate::requests::head::RequestHead::uri]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::get_version", "Argument[self].Field[crate::request::ClientRequest::head].Field[crate::requests::head::RequestHead::version]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::headers", "Argument[self].Field[crate::request::ClientRequest::head].Field[crate::requests::head::RequestHead::headers]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::headers_mut", "Argument[self].Field[crate::request::ClientRequest::head].Field[crate::requests::head::RequestHead::headers]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::insert_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::insert_header_if_none", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::method", "Argument[0]", "Argument[self].Field[crate::request::ClientRequest::head].Field[crate::requests::head::RequestHead::method]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::method", "Argument[0]", "ReturnValue.Field[crate::request::ClientRequest::head].Field[crate::requests::head::RequestHead::method]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::method", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::new", "Argument[0]", "ReturnValue.Field[crate::request::ClientRequest::head].Field[crate::requests::head::RequestHead::method]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::new", "Argument[2]", "ReturnValue.Field[crate::request::ClientRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::no_decompress", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::query", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::timeout", "Argument[0]", "Argument[self].Field[crate::request::ClientRequest::timeout].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::timeout", "Argument[0]", "ReturnValue.Field[crate::request::ClientRequest::timeout].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::uri", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::version", "Argument[0]", "Argument[self].Field[crate::request::ClientRequest::head].Field[crate::requests::head::RequestHead::version]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::version", "Argument[0]", "ReturnValue.Field[crate::request::ClientRequest::head].Field[crate::requests::head::RequestHead::version]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::request::ClientRequest>::version", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::json_body::JsonBody>::limit", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::json_body::JsonBody>::new", "Argument[0].Field[crate::responses::response::ClientResponse::timeout]", "ReturnValue.Field[crate::responses::json_body::JsonBody::timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::read_body::ReadBody>::new", "Argument[0]", "ReturnValue.Field[crate::responses::read_body::ReadBody::stream]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::read_body::ReadBody>::new", "Argument[1]", "ReturnValue.Field[crate::responses::read_body::ReadBody::limit]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::response::ClientResponse as crate::http_message::HttpMessage>::headers", "Argument[self].Field[crate::responses::response::ClientResponse::head].Field[crate::responses::head::ResponseHead::headers]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::response::ClientResponse as crate::http_message::HttpMessage>::take_payload", "Argument[self].Field[crate::responses::response::ClientResponse::payload]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::response::ClientResponse>::_timeout", "Argument[0]", "Argument[self].Field[crate::responses::response::ClientResponse::timeout].Field[crate::responses::ResponseTimeout::Disabled(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::response::ClientResponse>::_timeout", "Argument[0]", "ReturnValue.Field[crate::responses::response::ClientResponse::timeout].Field[crate::responses::ResponseTimeout::Disabled(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::response::ClientResponse>::_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::response::ClientResponse>::body", "Argument[self].Field[crate::responses::response::ClientResponse::timeout]", "ReturnValue.Field[crate::responses::response_body::ResponseBody::timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::response::ClientResponse>::head", "Argument[self].Field[crate::responses::response::ClientResponse::head]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::response::ClientResponse>::headers", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::response::ClientResponse>::json", "Argument[self].Field[crate::responses::response::ClientResponse::timeout]", "ReturnValue.Field[crate::responses::json_body::JsonBody::timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::response::ClientResponse>::map_body", "Argument[0].ReturnValue", "ReturnValue.Field[crate::responses::response::ClientResponse::payload]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::response::ClientResponse>::new", "Argument[0]", "ReturnValue.Field[crate::responses::response::ClientResponse::head]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::response::ClientResponse>::new", "Argument[1]", "ReturnValue.Field[crate::responses::response::ClientResponse::payload]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::response::ClientResponse>::status", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::response::ClientResponse>::timeout", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::response::ClientResponse>::version", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::response_body::ResponseBody>::limit", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::responses::response_body::ResponseBody>::new", "Argument[0].Field[crate::responses::response::ClientResponse::timeout]", "ReturnValue.Field[crate::responses::response_body::ResponseBody::timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::sender::RequestSender>::send", "Argument[1]", "ReturnValue.Field[crate::sender::SendClientRequest::Fut(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::sender::RequestSender>::send_body", "Argument[1]", "ReturnValue.Field[crate::sender::SendClientRequest::Fut(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::sender::RequestSender>::send_form", "Argument[1]", "ReturnValue.Field[crate::sender::SendClientRequest::Fut(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::sender::RequestSender>::send_json", "Argument[1]", "ReturnValue.Field[crate::sender::SendClientRequest::Fut(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::sender::RequestSender>::send_stream", "Argument[1]", "ReturnValue.Field[crate::sender::SendClientRequest::Fut(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::sender::SendClientRequest as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::sender::SendClientRequest::Err(0)].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::sender::SendClientRequest>::new", "Argument[0]", "ReturnValue.Field[crate::sender::SendClientRequest::Fut(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::sender::SendClientRequest>::new", "Argument[1]", "ReturnValue.Field[crate::sender::SendClientRequest::Fut(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::test::TestResponse>::append_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::test::TestResponse>::cookie", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::test::TestResponse>::finish", "Argument[self].Field[crate::test::TestResponse::head]", "ReturnValue.Field[crate::responses::response::ClientResponse::head]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::test::TestResponse>::insert_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::test::TestResponse>::set_payload", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::test::TestResponse>::version", "Argument[0]", "Argument[self].Field[crate::test::TestResponse::head].Field[crate::responses::head::ResponseHead::version]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::test::TestResponse>::version", "Argument[0]", "ReturnValue.Field[crate::test::TestResponse::head].Field[crate::responses::head::ResponseHead::version]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::test::TestResponse>::version", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::ws::WebsocketsRequest>::address", "Argument[0]", "Argument[self].Field[crate::ws::WebsocketsRequest::addr].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::ws::WebsocketsRequest>::address", "Argument[0]", "ReturnValue.Field[crate::ws::WebsocketsRequest::addr].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::ws::WebsocketsRequest>::address", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::ws::WebsocketsRequest>::basic_auth", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::ws::WebsocketsRequest>::bearer_auth", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::ws::WebsocketsRequest>::cookie", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::ws::WebsocketsRequest>::header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::ws::WebsocketsRequest>::max_frame_size", "Argument[0]", "Argument[self].Field[crate::ws::WebsocketsRequest::max_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::ws::WebsocketsRequest>::max_frame_size", "Argument[0]", "ReturnValue.Field[crate::ws::WebsocketsRequest::max_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::ws::WebsocketsRequest>::max_frame_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::ws::WebsocketsRequest>::new", "Argument[1]", "ReturnValue.Field[crate::ws::WebsocketsRequest::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::ws::WebsocketsRequest>::origin", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::ws::WebsocketsRequest>::protocols", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::ws::WebsocketsRequest>::server_mode", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::ws::WebsocketsRequest>::set_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "<crate::ws::WebsocketsRequest>::set_header_if_none", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: sinkModel
|
||||
data:
|
||||
- ["repo:https://github.com/actix/actix-web:awc", "crate::client::h2proto::send_request", "Argument[1]", "log-injection", "df-generated"]
|
||||
@@ -0,0 +1,17 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/clap-rs/clap:clap", "<crate::CliArgs as crate::derive::Args>::augment_args", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap", "<crate::CliArgs as crate::derive::Args>::augment_args_for_update", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap", "<crate::CliSub as crate::derive::Subcommand>::augment_subcommands", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap", "<crate::CliSub as crate::derive::Subcommand>::augment_subcommands_for_update", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap", "<crate::Mode as crate::str::traits::FromStr>::from_str", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap", "<crate::foreign_crate::LogLevel as crate::str::traits::FromStr>::from_str", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: sinkModel
|
||||
data:
|
||||
- ["repo:https://github.com/clap-rs/clap:clap", "<crate::Value>::from_matches", "Argument[0]", "log-injection", "df-generated"]
|
||||
@@ -0,0 +1,10 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_bench", "<crate::Args>::args", "Argument[self].Field[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_bench", "<crate::Args>::args", "Argument[self].Field[crate::Args(1)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_bench", "<crate::Args>::name", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_bench", "<crate::Args>::name", "Argument[self].Field[crate::Args(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
@@ -0,0 +1,394 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<_ as crate::builder::value_parser::TypedValueParser>::parse_ref", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<char as crate::builder::resettable::IntoResettable>::into_resettable", "Argument[self]", "ReturnValue.Field[crate::builder::resettable::Resettable::Value(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::action::ArgAction as crate::builder::resettable::IntoResettable>::into_resettable", "Argument[self]", "ReturnValue.Field[crate::builder::resettable::Resettable::Value(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::app_settings::AppFlags as crate::ops::bit::BitOr>::bitor", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg as crate::convert::From>::from", "Argument[0].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::action", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::add", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::alias", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::aliases", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::allow_hyphen_values", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::allow_negative_numbers", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::conflicts_with", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::conflicts_with_all", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::default_missing_value", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::default_missing_value_os", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::default_missing_values", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::default_missing_values_os", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::default_value", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::default_value_if", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::default_value_if_os", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::default_value_ifs", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::default_value_ifs_os", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::default_value_os", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::default_values", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::default_values_os", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::display_order", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::env", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::env_os", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::exclusive", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::get_action", "Argument[self].Field[crate::builder::arg::Arg::action].Field[crate::option::Option::Some(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::get_default_values", "Argument[self].Field[crate::builder::arg::Arg::default_vals]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::get_display_order", "Argument[self].Field[crate::builder::arg::Arg::disp_ord].Field[crate::option::Option::Some(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::get_env", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::get_help", "Argument[self].Field[crate::builder::arg::Arg::help].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::get_id", "Argument[self].Field[crate::builder::arg::Arg::id]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::get_index", "Argument[self].Field[crate::builder::arg::Arg::index]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::get_long_help", "Argument[self].Field[crate::builder::arg::Arg::long_help].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::get_num_args", "Argument[self].Field[crate::builder::arg::Arg::num_vals]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::get_short", "Argument[self].Field[crate::builder::arg::Arg::short]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::get_value_delimiter", "Argument[self].Field[crate::builder::arg::Arg::val_delim]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::get_value_names", "Argument[self].Field[crate::builder::arg::Arg::val_names]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::get_value_terminator", "Argument[self].Field[crate::builder::arg::Arg::terminator].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::global", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::group", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::groups", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::help", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::help_heading", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::hide", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::hide_default_value", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::hide_env", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::hide_env_values", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::hide_long_help", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::hide_possible_values", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::hide_short_help", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::id", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::ignore_case", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::index", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::last", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::long", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::long_help", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::next_line_help", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::num_args", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::number_of_values", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::overrides_with", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::overrides_with_all", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::raw", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::require_equals", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::required", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::required_if_eq", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::required_if_eq_all", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::required_if_eq_any", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::required_unless_present", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::required_unless_present_all", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::required_unless_present_any", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::requires", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::requires_all", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::requires_if", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::requires_ifs", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::setting", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::short", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::short_alias", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::short_aliases", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::trailing_var_arg", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::unset_setting", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::use_value_delimiter", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::value_delimiter", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::value_hint", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::value_name", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::value_names", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::value_parser", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::value_terminator", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::visible_alias", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::visible_aliases", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::visible_short_alias", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg::Arg>::visible_short_aliases", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg_group::ArgGroup as crate::convert::From>::from", "Argument[0].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg_group::ArgGroup>::arg", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg_group::ArgGroup>::args", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg_group::ArgGroup>::conflicts_with", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg_group::ArgGroup>::conflicts_with_all", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg_group::ArgGroup>::get_id", "Argument[self].Field[crate::builder::arg_group::ArgGroup::id]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg_group::ArgGroup>::id", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg_group::ArgGroup>::is_multiple", "Argument[self].Field[crate::builder::arg_group::ArgGroup::multiple]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg_group::ArgGroup>::is_required_set", "Argument[self].Field[crate::builder::arg_group::ArgGroup::required]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg_group::ArgGroup>::multiple", "Argument[0]", "Argument[self].Field[crate::builder::arg_group::ArgGroup::multiple]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg_group::ArgGroup>::multiple", "Argument[0]", "ReturnValue.Field[crate::builder::arg_group::ArgGroup::multiple]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg_group::ArgGroup>::multiple", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg_group::ArgGroup>::required", "Argument[0]", "Argument[self].Field[crate::builder::arg_group::ArgGroup::required]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg_group::ArgGroup>::required", "Argument[0]", "ReturnValue.Field[crate::builder::arg_group::ArgGroup::required]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg_group::ArgGroup>::required", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg_group::ArgGroup>::requires", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg_group::ArgGroup>::requires_all", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::arg_settings::ArgFlags as crate::ops::bit::BitOr>::bitor", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command as crate::convert::From>::from", "Argument[0].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::about", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::add", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::after_help", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::after_long_help", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::alias", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::aliases", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::allow_external_subcommands", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::allow_hyphen_values", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::allow_missing_positional", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::allow_negative_numbers", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::arg", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::arg_required_else_help", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::args", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::args_conflicts_with_subcommands", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::args_override_self", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::author", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::before_help", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::before_long_help", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::bin_name", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::color", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::defer", "Argument[0]", "Argument[self].Field[crate::builder::command::Command::deferred].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::defer", "Argument[0]", "ReturnValue.Field[crate::builder::command::Command::deferred].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::defer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::disable_colored_help", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::disable_help_flag", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::disable_help_subcommand", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::disable_version_flag", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::display_name", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::display_order", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::dont_collapse_args_in_usage", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::dont_delimit_trailing_values", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::external_subcommand_value_parser", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::flatten_help", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::get_about", "Argument[self].Field[crate::builder::command::Command::about].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::get_after_help", "Argument[self].Field[crate::builder::command::Command::after_help].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::get_after_long_help", "Argument[self].Field[crate::builder::command::Command::after_long_help].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::get_before_help", "Argument[self].Field[crate::builder::command::Command::before_help].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::get_before_long_help", "Argument[self].Field[crate::builder::command::Command::before_long_help].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::get_display_order", "Argument[self].Field[crate::builder::command::Command::disp_ord].Field[crate::option::Option::Some(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::get_external_subcommand_value_parser", "Argument[self].Field[crate::builder::command::Command::external_value_parser].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::get_help_template", "Argument[self].Field[crate::builder::command::Command::template].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::get_keymap", "Argument[self].Field[crate::builder::command::Command::args]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::get_long_about", "Argument[self].Field[crate::builder::command::Command::long_about].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::get_override_help", "Argument[self].Field[crate::builder::command::Command::help_str].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::get_override_usage", "Argument[self].Field[crate::builder::command::Command::usage_str].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::get_short_flag", "Argument[self].Field[crate::builder::command::Command::short_flag]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::global_setting", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::group", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::groups", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::help_expected", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::help_template", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::hide", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::hide_possible_values", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::ignore_errors", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::infer_long_args", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::infer_subcommands", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::long_about", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::long_flag", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::long_flag_alias", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::long_flag_aliases", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::long_help_exists", "Argument[self].Field[crate::builder::command::Command::long_help_exists]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::long_version", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::max_term_width", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::multicall", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::mut_arg", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::mut_args", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::mut_group", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::mut_subcommand", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::name", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::next_display_order", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::next_help_heading", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::next_line_help", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::no_binary_name", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::override_help", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::override_usage", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::propagate_version", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::setting", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::short_flag", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::short_flag_alias", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::short_flag_aliases", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::styles", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::subcommand", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::subcommand_help_heading", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::subcommand_negates_reqs", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::subcommand_precedence_over_arg", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::subcommand_required", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::subcommand_value_name", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::subcommands", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::term_width", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::trailing_var_arg", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::unset_global_setting", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::unset_setting", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::version", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::visible_alias", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::visible_aliases", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::visible_long_flag_alias", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::visible_long_flag_aliases", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::visible_short_flag_alias", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::visible_short_flag_aliases", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::os_str::OsStr as crate::convert::From>::from", "Argument[0].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::possible_value::PossibleValue>::alias", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::possible_value::PossibleValue>::aliases", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::possible_value::PossibleValue>::get_help", "Argument[self].Field[crate::builder::possible_value::PossibleValue::help].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::possible_value::PossibleValue>::help", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::possible_value::PossibleValue>::hide", "Argument[0]", "Argument[self].Field[crate::builder::possible_value::PossibleValue::hide]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::possible_value::PossibleValue>::hide", "Argument[0]", "ReturnValue.Field[crate::builder::possible_value::PossibleValue::hide]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::possible_value::PossibleValue>::hide", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::possible_value::PossibleValue>::is_hide_set", "Argument[self].Field[crate::builder::possible_value::PossibleValue::hide]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::range::ValueRange as crate::ops::range::RangeBounds>::end_bound", "Argument[self].Field[crate::builder::range::ValueRange::end_inclusive]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::range::ValueRange as crate::ops::range::RangeBounds>::start_bound", "Argument[self].Field[crate::builder::range::ValueRange::start_inclusive]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::range::ValueRange>::max_values", "Argument[self].Field[crate::builder::range::ValueRange::end_inclusive]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::range::ValueRange>::min_values", "Argument[self].Field[crate::builder::range::ValueRange::start_inclusive]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::range::ValueRange>::num_values", "Argument[self].Field[crate::builder::range::ValueRange::start_inclusive]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::range::ValueRange>::raw", "Argument[0]", "ReturnValue.Field[crate::builder::range::ValueRange::start_inclusive]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::range::ValueRange>::raw", "Argument[1]", "ReturnValue.Field[crate::builder::range::ValueRange::end_inclusive]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::resettable::Resettable as crate::builder::resettable::IntoResettable>::into_resettable", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::str::Str as crate::convert::AsRef>::as_ref", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::str::Str as crate::convert::From>::from", "Argument[0].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::str::Str as crate::convert::From>::from", "Argument[0].Field[crate::util::id::Id(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::str::Str as crate::convert::From>::from", "Argument[0].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::str::Str>::into_inner", "Argument[self].Field[crate::builder::str::Str::name]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styled_str::StyledStr as crate::convert::From>::from", "Argument[0].Reference.Reference", "ReturnValue.Field[crate::builder::styled_str::StyledStr(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styled_str::StyledStr as crate::convert::From>::from", "Argument[0].Reference", "ReturnValue.Field[crate::builder::styled_str::StyledStr(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styled_str::StyledStr as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::builder::styled_str::StyledStr(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styled_str::StyledStr>::ansi", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styled_str::StyledStr>::ansi", "Argument[self].Field[crate::builder::styled_str::StyledStr(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styled_str::StyledStr>::as_styled_str", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styled_str::StyledStr>::as_styled_str", "Argument[self].Field[crate::builder::styled_str::StyledStr(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::error", "Argument[0]", "Argument[self].Field[crate::builder::styling::Styles::error]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::error", "Argument[0]", "ReturnValue.Field[crate::builder::styling::Styles::error]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::error", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::get_error", "Argument[self].Field[crate::builder::styling::Styles::error]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::get_header", "Argument[self].Field[crate::builder::styling::Styles::header]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::get_invalid", "Argument[self].Field[crate::builder::styling::Styles::invalid]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::get_literal", "Argument[self].Field[crate::builder::styling::Styles::literal]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::get_placeholder", "Argument[self].Field[crate::builder::styling::Styles::placeholder]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::get_usage", "Argument[self].Field[crate::builder::styling::Styles::usage]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::get_valid", "Argument[self].Field[crate::builder::styling::Styles::valid]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::header", "Argument[0]", "Argument[self].Field[crate::builder::styling::Styles::header]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::header", "Argument[0]", "ReturnValue.Field[crate::builder::styling::Styles::header]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::invalid", "Argument[0]", "Argument[self].Field[crate::builder::styling::Styles::invalid]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::invalid", "Argument[0]", "ReturnValue.Field[crate::builder::styling::Styles::invalid]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::invalid", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::literal", "Argument[0]", "Argument[self].Field[crate::builder::styling::Styles::literal]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::literal", "Argument[0]", "ReturnValue.Field[crate::builder::styling::Styles::literal]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::literal", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::placeholder", "Argument[0]", "Argument[self].Field[crate::builder::styling::Styles::placeholder]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::placeholder", "Argument[0]", "ReturnValue.Field[crate::builder::styling::Styles::placeholder]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::placeholder", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::usage", "Argument[0]", "Argument[self].Field[crate::builder::styling::Styles::usage]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::usage", "Argument[0]", "ReturnValue.Field[crate::builder::styling::Styles::usage]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::usage", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::valid", "Argument[0]", "Argument[self].Field[crate::builder::styling::Styles::valid]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::valid", "Argument[0]", "ReturnValue.Field[crate::builder::styling::Styles::valid]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::styling::Styles>::valid", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::value_hint::ValueHint as crate::builder::resettable::IntoResettable>::into_resettable", "Argument[self]", "ReturnValue.Field[crate::builder::resettable::Resettable::Value(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::value_hint::ValueHint as crate::str::traits::FromStr>::from_str", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::value_parser::MapValueParser as crate::builder::value_parser::TypedValueParser>::parse", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::value_parser::MapValueParser as crate::builder::value_parser::TypedValueParser>::parse_ref", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::value_parser::OsStringValueParser as crate::builder::value_parser::TypedValueParser>::parse", "Argument[2]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::value_parser::PathBufValueParser as crate::builder::value_parser::TypedValueParser>::parse", "Argument[2]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::value_parser::RangedI64ValueParser>::range", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::value_parser::RangedU64ValueParser>::range", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::value_parser::UnknownArgumentValueParser>::and_suggest", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::value_parser::ValueParser as crate::convert::From>::from", "Argument[0].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::value_parser::ValueParser as crate::convert::From>::from", "Argument[0].Field[crate::builder::value_parser::_AnonymousValueParser(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::error::Error>::apply", "Argument[self].Field[crate::error::Error::inner]", "ReturnValue.Field[crate::error::Error::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::error::Error>::extend_context_unchecked", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::error::Error>::insert_context_unchecked", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::error::Error>::set_color", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::error::Error>::set_colored_help", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::error::Error>::set_help_flag", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::error::Error>::set_message", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::error::Error>::set_source", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::error::Error>::set_styles", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::mkeymap::MKeyMap>::get", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::mkeymap::MKeyMap>::remove_by_name", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::option::Option as crate::builder::resettable::IntoResettable>::into_resettable", "Argument[self].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::builder::resettable::Resettable::Value(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::fmt::Colorizer>::new", "Argument[0]", "ReturnValue.Field[crate::output::fmt::Colorizer::stream]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::fmt::Colorizer>::new", "Argument[1]", "ReturnValue.Field[crate::output::fmt::Colorizer::color_when]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::fmt::Colorizer>::with_content", "Argument[0]", "Argument[self].Field[crate::output::fmt::Colorizer::content]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::fmt::Colorizer>::with_content", "Argument[0]", "ReturnValue.Field[crate::output::fmt::Colorizer::content]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::fmt::Colorizer>::with_content", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::help_template::AutoHelp>::new", "Argument[0]", "ReturnValue.Field[crate::output::help_template::AutoHelp::template].Field[crate::output::help_template::HelpTemplate::writer]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::help_template::AutoHelp>::new", "Argument[1]", "ReturnValue.Field[crate::output::help_template::AutoHelp::template].Field[crate::output::help_template::HelpTemplate::cmd]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::help_template::AutoHelp>::new", "Argument[2]", "ReturnValue.Field[crate::output::help_template::AutoHelp::template].Field[crate::output::help_template::HelpTemplate::usage]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::help_template::AutoHelp>::new", "Argument[3]", "ReturnValue.Field[crate::output::help_template::AutoHelp::template].Field[crate::output::help_template::HelpTemplate::use_long]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::help_template::HelpTemplate>::new", "Argument[0]", "ReturnValue.Field[crate::output::help_template::HelpTemplate::writer]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::help_template::HelpTemplate>::new", "Argument[1]", "ReturnValue.Field[crate::output::help_template::HelpTemplate::cmd]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::help_template::HelpTemplate>::new", "Argument[2]", "ReturnValue.Field[crate::output::help_template::HelpTemplate::usage]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::help_template::HelpTemplate>::new", "Argument[3]", "ReturnValue.Field[crate::output::help_template::HelpTemplate::use_long]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::textwrap::wrap_algorithms::LineWrapper>::new", "Argument[0]", "ReturnValue.Field[crate::output::textwrap::wrap_algorithms::LineWrapper::hard_width]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::textwrap::wrap_algorithms::LineWrapper>::wrap", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::usage::Usage>::new", "Argument[0]", "ReturnValue.Field[crate::output::usage::Usage::cmd]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::usage::Usage>::required", "Argument[0]", "Argument[self].Field[crate::output::usage::Usage::required].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::usage::Usage>::required", "Argument[0]", "ReturnValue.Field[crate::output::usage::Usage::required].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::output::usage::Usage>::required", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::arg_matcher::ArgMatcher as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::parser::arg_matcher::ArgMatcher::matches]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::arg_matcher::ArgMatcher>::into_inner", "Argument[self].Field[crate::parser::arg_matcher::ArgMatcher::matches]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::arg_matcher::ArgMatcher>::pending_arg_id", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::arg_matcher::ArgMatcher>::take_pending", "Argument[self].Field[crate::parser::arg_matcher::ArgMatcher::pending].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::arg_matcher::ArgMatcher>::take_pending", "Argument[self].Field[crate::parser::arg_matcher::ArgMatcher::pending]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::error::MatchesError>::unwrap", "Argument[1].Field[crate::result::Result::Ok(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::ArgMatches>::remove_subcommand", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::ArgMatches>::subcommand", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::ArgMatches>::subcommand_name", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::GroupedValues as crate::iter::traits::iterator::Iterator>::size_hint", "Argument[self].Field[crate::parser::matches::arg_matches::GroupedValues::len]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::GroupedValues as crate::iter::traits::iterator::Iterator>::size_hint", "Argument[self].Field[crate::parser::matches::arg_matches::GroupedValues::len]", "ReturnValue.Field[1].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::IdsRef as crate::iter::traits::iterator::Iterator>::next", "Argument[self].Field[crate::parser::matches::arg_matches::IdsRef::iter].Element", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::Indices as crate::iter::traits::iterator::Iterator>::size_hint", "Argument[self].Field[crate::parser::matches::arg_matches::Indices::len]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::Indices as crate::iter::traits::iterator::Iterator>::size_hint", "Argument[self].Field[crate::parser::matches::arg_matches::Indices::len]", "ReturnValue.Field[1].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::OccurrenceValues as crate::iter::traits::double_ended::DoubleEndedIterator>::next_back", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::OccurrenceValues as crate::iter::traits::iterator::Iterator>::next", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::OccurrenceValuesRef as crate::iter::traits::double_ended::DoubleEndedIterator>::next_back", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::OccurrenceValuesRef as crate::iter::traits::iterator::Iterator>::next", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::Occurrences as crate::iter::traits::double_ended::DoubleEndedIterator>::next_back", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::Occurrences as crate::iter::traits::iterator::Iterator>::next", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::OccurrencesRef as crate::iter::traits::double_ended::DoubleEndedIterator>::next_back", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::OccurrencesRef as crate::iter::traits::iterator::Iterator>::next", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::RawOccurrenceValues as crate::iter::traits::double_ended::DoubleEndedIterator>::next_back", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::RawOccurrenceValues as crate::iter::traits::iterator::Iterator>::next", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::RawOccurrences as crate::iter::traits::double_ended::DoubleEndedIterator>::next_back", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::RawOccurrences as crate::iter::traits::iterator::Iterator>::next", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::RawValues as crate::iter::traits::iterator::Iterator>::size_hint", "Argument[self].Field[crate::parser::matches::arg_matches::RawValues::len]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::RawValues as crate::iter::traits::iterator::Iterator>::size_hint", "Argument[self].Field[crate::parser::matches::arg_matches::RawValues::len]", "ReturnValue.Field[1].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::Values as crate::iter::traits::iterator::Iterator>::size_hint", "Argument[self].Field[crate::parser::matches::arg_matches::Values::len]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::Values as crate::iter::traits::iterator::Iterator>::size_hint", "Argument[self].Field[crate::parser::matches::arg_matches::Values::len]", "ReturnValue.Field[1].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::ValuesRef as crate::iter::traits::iterator::Iterator>::size_hint", "Argument[self].Field[crate::parser::matches::arg_matches::ValuesRef::len]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::ValuesRef as crate::iter::traits::iterator::Iterator>::size_hint", "Argument[self].Field[crate::parser::matches::arg_matches::ValuesRef::len]", "ReturnValue.Field[1].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::matched_arg::MatchedArg>::infer_type_id", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::matched_arg::MatchedArg>::infer_type_id", "Argument[self].Field[crate::parser::matches::matched_arg::MatchedArg::type_id].Field[crate::option::Option::Some(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::matched_arg::MatchedArg>::into_vals", "Argument[self].Field[crate::parser::matches::matched_arg::MatchedArg::vals]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::matched_arg::MatchedArg>::set_source", "Argument[0]", "Argument[self].Field[crate::parser::matches::matched_arg::MatchedArg::source].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::matched_arg::MatchedArg>::source", "Argument[self].Field[crate::parser::matches::matched_arg::MatchedArg::source]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::matched_arg::MatchedArg>::type_id", "Argument[self].Field[crate::parser::matches::matched_arg::MatchedArg::type_id]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::parser::Parser>::get_matches_with", "Argument[self]", "Argument[1]", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::parser::Parser>::new", "Argument[0]", "ReturnValue.Field[crate::parser::parser::Parser::cmd]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::parser::Parser>::parse", "Argument[self]", "Argument[1]", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::validator::Validator>::new", "Argument[0]", "ReturnValue.Field[crate::parser::validator::Validator::cmd]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::util::any_value::AnyValue>::type_id", "Argument[self].Field[crate::util::any_value::AnyValue::id]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::util::color::ColorChoice as crate::str::traits::FromStr>::from_str", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::util::flat_map::FlatMap>::entry", "Argument[0]", "ReturnValue.Field[crate::util::flat_map::Entry::Vacant(0)].Field[crate::util::flat_map::VacantEntry::key]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::util::flat_map::FlatMap>::entry", "Argument[self]", "ReturnValue.Field[crate::util::flat_map::Entry::Occupied(0)].Field[crate::util::flat_map::OccupiedEntry::v]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::util::flat_map::FlatMap>::entry", "Argument[self]", "ReturnValue.Field[crate::util::flat_map::Entry::Vacant(0)].Field[crate::util::flat_map::VacantEntry::v]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::util::flat_map::FlatMap>::get", "Argument[self].Field[crate::util::flat_map::FlatMap::values].Element", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::util::flat_map::FlatMap>::get_mut", "Argument[self].Field[crate::util::flat_map::FlatMap::values].Element", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::util::flat_map::FlatMap>::insert", "Argument[1]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::util::flat_map::Iter as crate::iter::traits::iterator::Iterator>::next", "Argument[self].Field[crate::util::flat_map::Iter::keys].Element", "ReturnValue.Field[crate::option::Option::Some(0)].Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::util::flat_map::Iter as crate::iter::traits::iterator::Iterator>::next", "Argument[self].Field[crate::util::flat_map::Iter::values].Element", "ReturnValue.Field[crate::option::Option::Some(0)].Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::util::id::Id as crate::convert::From>::from", "Argument[0].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::util::id::Id>::as_internal_str", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::util::id::Id>::as_internal_str", "Argument[self].Field[crate::util::id::Id(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<usize as crate::builder::resettable::IntoResettable>::into_resettable", "Argument[self]", "ReturnValue.Field[crate::builder::resettable::Resettable::Value(0)]", "value", "dfc-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: sinkModel
|
||||
data:
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::command::Command>::_panic_on_missing_help", "Argument[self]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::value_parser::RangedI64ValueParser>::range", "Argument[self]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::builder::value_parser::RangedU64ValueParser>::range", "Argument[self]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::error::MatchesError>::unwrap", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::error::MatchesError>::unwrap", "Argument[1]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::ArgMatches>::contains_id", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::ArgMatches>::get_count", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::ArgMatches>::get_flag", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::ArgMatches>::get_many", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::ArgMatches>::get_occurrences", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::ArgMatches>::get_one", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::ArgMatches>::get_raw", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::ArgMatches>::get_raw_occurrences", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::ArgMatches>::remove_many", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::ArgMatches>::remove_occurrences", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_builder", "<crate::parser::matches::arg_matches::ArgMatches>::remove_one", "Argument[0]", "log-injection", "df-generated"]
|
||||
@@ -0,0 +1,78 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<_ as crate::engine::custom::ValueCandidates>::candidates", "Argument[self].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<_ as crate::engine::custom::ValueCompleter>::complete", "Argument[0]", "Argument[self].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<_ as crate::engine::custom::ValueCompleter>::complete", "Argument[self].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::aot::shells::bash::Bash as crate::aot::generator::Generator>::file_name", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::aot::shells::elvish::Elvish as crate::aot::generator::Generator>::file_name", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::aot::shells::fish::Fish as crate::aot::generator::Generator>::file_name", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::aot::shells::powershell::PowerShell as crate::aot::generator::Generator>::file_name", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::aot::shells::shell::Shell as crate::aot::generator::Generator>::file_name", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::aot::shells::shell::Shell as crate::str::traits::FromStr>::from_str", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::aot::shells::zsh::Zsh as crate::aot::generator::Generator>::file_name", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::add_prefix", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::display_order", "Argument[0]", "Argument[self].Field[crate::engine::candidate::CompletionCandidate::display_order]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::display_order", "Argument[0]", "ReturnValue.Field[crate::engine::candidate::CompletionCandidate::display_order]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::display_order", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::get_display_order", "Argument[self].Field[crate::engine::candidate::CompletionCandidate::display_order]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::get_help", "Argument[self].Field[crate::engine::candidate::CompletionCandidate::help].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::get_id", "Argument[self].Field[crate::engine::candidate::CompletionCandidate::id].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::get_tag", "Argument[self].Field[crate::engine::candidate::CompletionCandidate::tag].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::get_value", "Argument[self].Field[crate::engine::candidate::CompletionCandidate::value]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::help", "Argument[0]", "Argument[self].Field[crate::engine::candidate::CompletionCandidate::help]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::help", "Argument[0]", "ReturnValue.Field[crate::engine::candidate::CompletionCandidate::help]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::help", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::hide", "Argument[0]", "Argument[self].Field[crate::engine::candidate::CompletionCandidate::hidden]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::hide", "Argument[0]", "ReturnValue.Field[crate::engine::candidate::CompletionCandidate::hidden]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::hide", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::id", "Argument[0]", "Argument[self].Field[crate::engine::candidate::CompletionCandidate::id]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::id", "Argument[0]", "ReturnValue.Field[crate::engine::candidate::CompletionCandidate::id]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::id", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::is_hide_set", "Argument[self].Field[crate::engine::candidate::CompletionCandidate::hidden]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::tag", "Argument[0]", "Argument[self].Field[crate::engine::candidate::CompletionCandidate::tag]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::tag", "Argument[0]", "ReturnValue.Field[crate::engine::candidate::CompletionCandidate::tag]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::candidate::CompletionCandidate>::tag", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::custom::PathCompleter>::current_dir", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::custom::PathCompleter>::filter", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::engine::custom::PathCompleter>::stdio", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::CompleteEnv>::bin", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::CompleteEnv>::completer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::CompleteEnv>::shells", "Argument[0]", "Argument[self].Field[crate::env::CompleteEnv::shells]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::CompleteEnv>::shells", "Argument[0]", "ReturnValue.Field[crate::env::CompleteEnv::shells]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::CompleteEnv>::shells", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::CompleteEnv>::var", "Argument[0]", "Argument[self].Field[crate::env::CompleteEnv::var]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::CompleteEnv>::var", "Argument[0]", "ReturnValue.Field[crate::env::CompleteEnv::var]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::CompleteEnv>::var", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::CompleteEnv>::with_factory", "Argument[0]", "ReturnValue.Field[crate::env::CompleteEnv::factory]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::shells::CompType as crate::str::traits::FromStr>::from_str", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "crate::aot::generator::utils::find_subcommand_with_path", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "crate::engine::custom::complete_path", "Argument[1]", "Argument[2]", "taint", "df-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: sinkModel
|
||||
data:
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::shells::Bash as crate::env::EnvCompleter>::write_complete", "Argument[1]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::shells::Bash as crate::env::EnvCompleter>::write_complete", "Argument[2]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::shells::Bash as crate::env::EnvCompleter>::write_complete", "Argument[2]", "path-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::shells::Elvish as crate::env::EnvCompleter>::write_complete", "Argument[1]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::shells::Elvish as crate::env::EnvCompleter>::write_complete", "Argument[2]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::shells::Elvish as crate::env::EnvCompleter>::write_complete", "Argument[2]", "path-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::shells::Fish as crate::env::EnvCompleter>::write_complete", "Argument[1]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::shells::Fish as crate::env::EnvCompleter>::write_complete", "Argument[2]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::shells::Fish as crate::env::EnvCompleter>::write_complete", "Argument[2]", "path-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::shells::Powershell as crate::env::EnvCompleter>::write_complete", "Argument[1]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::shells::Powershell as crate::env::EnvCompleter>::write_complete", "Argument[2]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::shells::Powershell as crate::env::EnvCompleter>::write_complete", "Argument[2]", "path-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::shells::Zsh as crate::env::EnvCompleter>::write_complete", "Argument[1]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::shells::Zsh as crate::env::EnvCompleter>::write_complete", "Argument[2]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "<crate::env::shells::Zsh as crate::env::EnvCompleter>::write_complete", "Argument[2]", "path-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "crate::engine::complete::complete", "Argument[1]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "crate::engine::complete::complete", "Argument[2]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "crate::engine::complete::complete", "Argument[3]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "crate::engine::complete::complete", "Argument[3]", "path-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "crate::engine::custom::complete_path", "Argument[1]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete", "crate::engine::custom::complete_path", "Argument[1]", "path-injection", "df-generated"]
|
||||
@@ -0,0 +1,13 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete_nushell", "<crate::Nushell as crate::aot::generator::Generator>::file_name", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: sinkModel
|
||||
data:
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete_nushell", "crate::has_command", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_complete_nushell", "crate::register_example", "Argument[0]", "log-injection", "df-generated"]
|
||||
@@ -0,0 +1,55 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::attr::ClapAttr>::lit_str_or_abort", "Argument[self].Field[crate::attr::ClapAttr::value].Field[crate::option::Option::Some(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::attr::ClapAttr>::value_or_abort", "Argument[self].Field[crate::attr::ClapAttr::value].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::result::Result::Ok(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::action", "Argument[self]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::action", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::cased_name", "Argument[self].Field[crate::item::Item::name].Field[crate::item::Name::Assigned(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::casing", "Argument[self].Field[crate::item::Item::casing]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::env_casing", "Argument[self].Field[crate::item::Item::env_casing]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::from_args_field", "Argument[1]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::item::Item::casing]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::from_args_field", "Argument[2]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::item::Item::env_casing]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::from_args_struct", "Argument[1]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::item::Item::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::from_subcommand_enum", "Argument[1]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::item::Item::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::from_subcommand_variant", "Argument[1]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::item::Item::casing]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::from_subcommand_variant", "Argument[2]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::item::Item::env_casing]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::from_value_enum", "Argument[1]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::item::Item::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::from_value_enum_variant", "Argument[1]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::item::Item::casing]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::from_value_enum_variant", "Argument[2]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::item::Item::env_casing]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::group_id", "Argument[self].Field[crate::item::Item::group_id]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::id", "Argument[self].Field[crate::item::Item::name]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::is_positional", "Argument[self].Field[crate::item::Item::is_positional]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::kind", "Argument[self].Field[crate::item::Item::kind].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::kind", "Argument[self].Field[crate::item::Item::kind]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::skip_group", "Argument[self].Field[crate::item::Item::skip_group]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::value_name", "Argument[self].Field[crate::item::Item::name].Field[crate::item::Name::Assigned(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::value_parser", "Argument[self]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Item>::value_parser", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Method>::args", "Argument[self].Field[crate::item::Method::args]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Method>::new", "Argument[0]", "ReturnValue.Field[crate::item::Method::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Method>::new", "Argument[1]", "ReturnValue.Field[crate::item::Method::args]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::item::Name>::translate", "Argument[self].Field[crate::item::Name::Assigned(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::utils::spanned::Sp as crate::convert::From>::from", "Argument[0].Field[crate::utils::spanned::Sp::span]", "ReturnValue.Field[crate::utils::spanned::Sp::span]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::utils::spanned::Sp as crate::convert::From>::from", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::utils::spanned::Sp as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::utils::spanned::Sp::val]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::utils::spanned::Sp as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[crate::utils::spanned::Sp::val]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::utils::spanned::Sp>::get", "Argument[self].Field[crate::utils::spanned::Sp::val]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::utils::spanned::Sp>::new", "Argument[0]", "ReturnValue.Field[crate::utils::spanned::Sp::val]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::utils::spanned::Sp>::new", "Argument[1]", "ReturnValue.Field[crate::utils::spanned::Sp::span]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "<crate::utils::spanned::Sp>::span", "Argument[self].Field[crate::utils::spanned::Sp::span]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "crate::derives::args::derive_args", "Argument[0].Reference", "ReturnValue.Field[crate::item::Item::group_id].Field[crate::item::Name::Derived(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "crate::derives::args::derive_args", "Argument[0]", "ReturnValue.Field[crate::item::Item::group_id].Field[crate::item::Name::Derived(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "crate::derives::args::derive_args", "Argument[0]", "ReturnValue.Field[crate::item::Item::name].Field[crate::item::Name::Derived(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "crate::derives::parser::derive_parser", "Argument[0].Reference", "ReturnValue.Field[crate::item::Item::group_id].Field[crate::item::Name::Derived(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "crate::derives::parser::derive_parser", "Argument[0]", "ReturnValue.Field[crate::item::Item::group_id].Field[crate::item::Name::Derived(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "crate::derives::subcommand::derive_subcommand", "Argument[0].Reference", "ReturnValue.Field[crate::item::Item::group_id].Field[crate::item::Name::Derived(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "crate::derives::subcommand::derive_subcommand", "Argument[0]", "ReturnValue.Field[crate::item::Item::group_id].Field[crate::item::Name::Derived(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "crate::derives::subcommand::derive_subcommand", "Argument[0]", "ReturnValue.Field[crate::item::Item::name].Field[crate::item::Name::Derived(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "crate::derives::value_enum::derive_value_enum", "Argument[0].Reference", "ReturnValue.Field[crate::item::Item::group_id].Field[crate::item::Name::Derived(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "crate::derives::value_enum::derive_value_enum", "Argument[0]", "ReturnValue.Field[crate::item::Item::group_id].Field[crate::item::Name::Derived(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "crate::derives::value_enum::derive_value_enum", "Argument[0]", "ReturnValue.Field[crate::item::Item::name].Field[crate::item::Name::Derived(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_derive", "crate::utils::ty::inner_type", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
@@ -0,0 +1,11 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_lex", "<crate::ParsedArg>::to_value", "Argument[self].Field[crate::ParsedArg::inner]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_lex", "<crate::ParsedArg>::to_value_os", "Argument[self].Field[crate::ParsedArg::inner]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_lex", "<crate::ext::Split as crate::iter::traits::iterator::Iterator>::next", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_lex", "<crate::ffi::os_str::OsStr as crate::ext::OsStrExt>::split", "Argument[0]", "ReturnValue.Field[crate::ext::Split::needle]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_lex", "<crate::ffi::os_str::OsStr as crate::ext::OsStrExt>::split", "Argument[self]", "ReturnValue.Field[crate::ext::Split::haystack].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
@@ -0,0 +1,19 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_mangen", "<crate::Man>::date", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_mangen", "<crate::Man>::generate_to", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_mangen", "<crate::Man>::get_filename", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_mangen", "<crate::Man>::manual", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_mangen", "<crate::Man>::new", "Argument[0]", "ReturnValue.Field[crate::Man::cmd]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_mangen", "<crate::Man>::section", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_mangen", "<crate::Man>::source", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_mangen", "<crate::Man>::title", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: sinkModel
|
||||
data:
|
||||
- ["repo:https://github.com/clap-rs/clap:clap_mangen", "<crate::Man>::generate_to", "Argument[self]", "path-injection", "df-generated"]
|
||||
@@ -0,0 +1,254 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::DebugStream as crate::io::Read>::read", "Argument[self]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::body::incoming::Incoming>::as_ffi_mut", "Argument[self].Field[crate::body::incoming::Incoming::kind].Field[crate::body::incoming::Kind::Ffi(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::body::incoming::Incoming>::h2", "Argument[0]", "ReturnValue.Field[crate::body::incoming::Incoming::kind].Field[crate::body::incoming::Kind::H2::recv]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::body::incoming::Incoming>::h2", "Argument[1]", "ReturnValue.Field[crate::body::incoming::Incoming::kind].Field[crate::body::incoming::Kind::H2::content_length]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::body::incoming::Incoming>::h2", "Argument[2]", "ReturnValue.Field[crate::body::incoming::Incoming::kind].Field[crate::body::incoming::Kind::H2::ping]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::body::length::DecodedLength as crate::convert::From>::from", "Argument[0].Field[crate::option::Option::Some(0)].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::body::length::DecodedLength>::checked_new", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::body::length::DecodedLength(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::body::length::DecodedLength>::danger_len", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::body::length::DecodedLength>::danger_len", "Argument[self].Field[crate::body::length::DecodedLength(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::body::length::DecodedLength>::into_opt", "Argument[self].Field[crate::body::length::DecodedLength(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::body::length::DecodedLength>::new", "Argument[0]", "ReturnValue.Field[crate::body::length::DecodedLength(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::bytes::Bytes as crate::convert::From>::from", "Argument[0].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::bytes::Bytes as crate::convert::From>::from", "Argument[0].Field[crate::ext::h1_reason_phrase::ReasonPhrase(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::allow_obsolete_multiline_headers_in_responses", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::allow_spaces_after_header_name_in_responses", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::handshake", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::handshake", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::http09_responses", "Argument[0]", "Argument[self].Field[crate::client::conn::http1::Builder::h09_responses]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::http09_responses", "Argument[0]", "ReturnValue.Field[crate::client::conn::http1::Builder::h09_responses]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::http09_responses", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::ignore_invalid_headers_in_responses", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::max_buf_size", "Argument[0]", "Argument[self].Field[crate::client::conn::http1::Builder::h1_max_buf_size].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::max_buf_size", "Argument[0]", "ReturnValue.Field[crate::client::conn::http1::Builder::h1_max_buf_size].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::max_buf_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::max_headers", "Argument[0]", "Argument[self].Field[crate::client::conn::http1::Builder::h1_max_headers].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::max_headers", "Argument[0]", "ReturnValue.Field[crate::client::conn::http1::Builder::h1_max_headers].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::max_headers", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::preserve_header_case", "Argument[0]", "Argument[self].Field[crate::client::conn::http1::Builder::h1_preserve_header_case]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::preserve_header_case", "Argument[0]", "ReturnValue.Field[crate::client::conn::http1::Builder::h1_preserve_header_case]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::preserve_header_case", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::preserve_header_order", "Argument[0]", "Argument[self].Field[crate::client::conn::http1::Builder::h1_preserve_header_order]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::preserve_header_order", "Argument[0]", "ReturnValue.Field[crate::client::conn::http1::Builder::h1_preserve_header_order]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::preserve_header_order", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::read_buf_exact_size", "Argument[0]", "Argument[self].Field[crate::client::conn::http1::Builder::h1_read_buf_exact_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::read_buf_exact_size", "Argument[0]", "ReturnValue.Field[crate::client::conn::http1::Builder::h1_read_buf_exact_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::read_buf_exact_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::title_case_headers", "Argument[0]", "Argument[self].Field[crate::client::conn::http1::Builder::h1_title_case_headers]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::title_case_headers", "Argument[0]", "ReturnValue.Field[crate::client::conn::http1::Builder::h1_title_case_headers]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::title_case_headers", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::writev", "Argument[0]", "Argument[self].Field[crate::client::conn::http1::Builder::h1_writev].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::writev", "Argument[0]", "ReturnValue.Field[crate::client::conn::http1::Builder::h1_writev].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Builder>::writev", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::Connection>::with_upgrades", "Argument[self]", "ReturnValue.Field[crate::client::conn::http1::upgrades::UpgradeableConnection::inner].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::SendRequest>::send_request", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http1::SendRequest>::try_send_request", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::adaptive_window", "Argument[0]", "Argument[self].Field[crate::client::conn::http2::Builder::h2_builder].Field[crate::proto::h2::client::Config::adaptive_window]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::adaptive_window", "Argument[0]", "ReturnValue.Field[crate::client::conn::http2::Builder::h2_builder].Field[crate::proto::h2::client::Config::adaptive_window]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::adaptive_window", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::handshake", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::handshake", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::header_table_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::initial_connection_window_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::initial_max_send_streams", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::initial_stream_window_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::keep_alive_interval", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::keep_alive_timeout", "Argument[0]", "Argument[self].Field[crate::client::conn::http2::Builder::h2_builder].Field[crate::proto::h2::client::Config::keep_alive_timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::keep_alive_timeout", "Argument[0]", "ReturnValue.Field[crate::client::conn::http2::Builder::h2_builder].Field[crate::proto::h2::client::Config::keep_alive_timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::keep_alive_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::keep_alive_while_idle", "Argument[0]", "Argument[self].Field[crate::client::conn::http2::Builder::h2_builder].Field[crate::proto::h2::client::Config::keep_alive_while_idle]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::keep_alive_while_idle", "Argument[0]", "ReturnValue.Field[crate::client::conn::http2::Builder::h2_builder].Field[crate::proto::h2::client::Config::keep_alive_while_idle]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::keep_alive_while_idle", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::max_concurrent_reset_streams", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::max_concurrent_streams", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::max_frame_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::max_header_list_size", "Argument[0]", "Argument[self].Field[crate::client::conn::http2::Builder::h2_builder].Field[crate::proto::h2::client::Config::max_header_list_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::max_header_list_size", "Argument[0]", "ReturnValue.Field[crate::client::conn::http2::Builder::h2_builder].Field[crate::proto::h2::client::Config::max_header_list_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::max_header_list_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::max_pending_accept_reset_streams", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::max_send_buf_size", "Argument[0]", "Argument[self].Field[crate::client::conn::http2::Builder::h2_builder].Field[crate::proto::h2::client::Config::max_send_buffer_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::max_send_buf_size", "Argument[0]", "ReturnValue.Field[crate::client::conn::http2::Builder::h2_builder].Field[crate::proto::h2::client::Config::max_send_buffer_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::max_send_buf_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::new", "Argument[0]", "ReturnValue.Field[crate::client::conn::http2::Builder::exec]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::Builder>::timer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::conn::http2::SendRequest as crate::clone::Clone>::clone", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::dispatch::Sender>::send", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::dispatch::Sender>::try_send", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::dispatch::Sender>::unbound", "Argument[self].Field[crate::client::dispatch::Sender::inner]", "ReturnValue.Field[crate::client::dispatch::UnboundedSender::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::dispatch::TrySendError>::into_error", "Argument[self].Field[crate::client::dispatch::TrySendError::error]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::dispatch::TrySendError>::take_message", "Argument[self].Field[crate::client::dispatch::TrySendError::message].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::dispatch::TrySendError>::take_message", "Argument[self].Field[crate::client::dispatch::TrySendError::message]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::client::dispatch::UnboundedSender as crate::clone::Clone>::clone", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::common::io::compat::Compat>::new", "Argument[0]", "ReturnValue.Field[crate::common::io::compat::Compat(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::common::io::rewind::Rewind>::into_inner", "Argument[self].Field[crate::common::io::rewind::Rewind::inner]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::common::io::rewind::Rewind>::into_inner", "Argument[self].Field[crate::common::io::rewind::Rewind::pre].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::common::io::rewind::Rewind>::new", "Argument[0]", "ReturnValue.Field[crate::common::io::rewind::Rewind::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::common::io::rewind::Rewind>::new_buffered", "Argument[0]", "ReturnValue.Field[crate::common::io::rewind::Rewind::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::common::io::rewind::Rewind>::new_buffered", "Argument[1]", "ReturnValue.Field[crate::common::io::rewind::Rewind::pre].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::common::io::rewind::Rewind>::rewind", "Argument[0]", "Argument[self].Field[crate::common::io::rewind::Rewind::pre].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::common::time::Time>::check", "Argument[0].Field[crate::common::time::Dur::Configured(0)].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::common::time::Time>::check", "Argument[0].Field[crate::common::time::Dur::Default(0)].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::error::Error>::with", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::ext::Protocol>::from_inner", "Argument[0]", "ReturnValue.Field[crate::ext::Protocol::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::ext::Protocol>::into_inner", "Argument[self].Field[crate::ext::Protocol::inner]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::ext::h1_reason_phrase::ReasonPhrase as crate::convert::AsRef>::as_ref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::ext::h1_reason_phrase::ReasonPhrase as crate::convert::AsRef>::as_ref", "Argument[self].Field[crate::ext::h1_reason_phrase::ReasonPhrase(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::ext::h1_reason_phrase::ReasonPhrase>::as_bytes", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::ext::h1_reason_phrase::ReasonPhrase>::as_bytes", "Argument[self].Field[crate::ext::h1_reason_phrase::ReasonPhrase(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::ffi::http_types::hyper_response>::wrap", "Argument[0]", "ReturnValue.Field[crate::ffi::http_types::hyper_response(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::conn::Conn>::new", "Argument[0]", "ReturnValue.Field[crate::proto::h1::conn::Conn::io].Field[crate::proto::h1::io::Buffered::io]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::conn::Conn>::pending_upgrade", "Argument[self].Field[crate::proto::h1::conn::Conn::state].Field[crate::proto::h1::conn::State::upgrade]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::conn::Conn>::set_h1_parser_config", "Argument[0]", "Argument[self].Field[crate::proto::h1::conn::Conn::state].Field[crate::proto::h1::conn::State::h1_parser_config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::conn::Conn>::set_timer", "Argument[0]", "Argument[self].Field[crate::proto::h1::conn::Conn::state].Field[crate::proto::h1::conn::State::timer]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::conn::Conn>::wants_read_again", "Argument[self].Field[crate::proto::h1::conn::Conn::state].Field[crate::proto::h1::conn::State::notify_read]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::decode::Decoder>::chunked", "Argument[0]", "ReturnValue.Field[crate::proto::h1::decode::Decoder::kind].Field[crate::proto::h1::decode::Kind::Chunked::h1_max_headers]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::decode::Decoder>::chunked", "Argument[1]", "ReturnValue.Field[crate::proto::h1::decode::Decoder::kind].Field[crate::proto::h1::decode::Kind::Chunked::h1_max_header_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::decode::Decoder>::length", "Argument[0]", "ReturnValue.Field[crate::proto::h1::decode::Decoder::kind].Field[crate::proto::h1::decode::Kind::Length(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::decode::Decoder>::new", "Argument[1]", "ReturnValue.Field[crate::proto::h1::decode::Decoder::kind].Field[crate::proto::h1::decode::Kind::Chunked::h1_max_headers]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::decode::Decoder>::new", "Argument[2]", "ReturnValue.Field[crate::proto::h1::decode::Decoder::kind].Field[crate::proto::h1::decode::Kind::Chunked::h1_max_header_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::dispatch::Client as crate::proto::h1::dispatch::Dispatch>::recv_msg", "Argument[0].Field[crate::result::Result::Err(0)]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::dispatch::Client>::new", "Argument[0]", "ReturnValue.Field[crate::proto::h1::dispatch::Client::rx]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::dispatch::Dispatcher>::into_inner", "Argument[self].Field[crate::proto::h1::dispatch::Dispatcher::dispatch]", "ReturnValue.Field[2]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::dispatch::Dispatcher>::new", "Argument[0]", "ReturnValue.Field[crate::proto::h1::dispatch::Dispatcher::dispatch]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::dispatch::Dispatcher>::new", "Argument[1]", "ReturnValue.Field[crate::proto::h1::dispatch::Dispatcher::conn]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::dispatch::Server as crate::proto::h1::dispatch::Dispatch>::recv_msg", "Argument[0].Field[crate::option::Option::Some(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::dispatch::Server as crate::proto::h1::dispatch::Dispatch>::recv_msg", "Argument[0].Field[crate::result::Result::Ok(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::dispatch::Server>::into_service", "Argument[self].Field[crate::proto::h1::dispatch::Server::service]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::dispatch::Server>::new", "Argument[0]", "ReturnValue.Field[crate::proto::h1::dispatch::Server::service]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::encode::ChunkSize as crate::buf::buf_impl::Buf>::chunk", "Argument[self].Field[crate::proto::h1::encode::ChunkSize::bytes].Element", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::encode::EncodedBuf as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::proto::h1::encode::EncodedBuf::kind].Field[crate::proto::h1::encode::BufKind::Chunked(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::encode::EncodedBuf as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::proto::h1::encode::EncodedBuf::kind].Field[crate::proto::h1::encode::BufKind::Exact(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::encode::EncodedBuf as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::proto::h1::encode::EncodedBuf::kind].Field[crate::proto::h1::encode::BufKind::Limited(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::encode::Encoder>::encode", "Argument[0]", "ReturnValue.Field[crate::proto::h1::encode::EncodedBuf::kind].Field[crate::proto::h1::encode::BufKind::Exact(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::encode::Encoder>::encode_and_end", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::encode::Encoder>::end", "Argument[self].Field[crate::proto::h1::encode::Encoder::kind].Field[crate::proto::h1::encode::Kind::Length(0)]", "ReturnValue.Field[crate::result::Result::Err(0)].Field[crate::proto::h1::encode::NotEof(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::encode::Encoder>::into_chunked_with_trailing_fields", "Argument[self].Field[crate::proto::h1::encode::Encoder::is_last]", "ReturnValue.Field[crate::proto::h1::encode::Encoder::is_last]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::encode::Encoder>::into_chunked_with_trailing_fields", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::encode::Encoder>::is_last", "Argument[self].Field[crate::proto::h1::encode::Encoder::is_last]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::encode::Encoder>::length", "Argument[0]", "ReturnValue.Field[crate::proto::h1::encode::Encoder::kind].Field[crate::proto::h1::encode::Kind::Length(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::encode::Encoder>::set_last", "Argument[0]", "Argument[self].Field[crate::proto::h1::encode::Encoder::is_last]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::encode::Encoder>::set_last", "Argument[0]", "ReturnValue.Field[crate::proto::h1::encode::Encoder::is_last]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::encode::Encoder>::set_last", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::io::Buffered>::into_inner", "Argument[self].Field[crate::proto::h1::io::Buffered::io]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::io::Buffered>::io_mut", "Argument[self].Field[crate::proto::h1::io::Buffered::io]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::io::Buffered>::is_read_blocked", "Argument[self].Field[crate::proto::h1::io::Buffered::read_blocked]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::io::Buffered>::new", "Argument[0]", "ReturnValue.Field[crate::proto::h1::io::Buffered::io]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::io::Buffered>::read_buf_mut", "Argument[self].Field[crate::proto::h1::io::Buffered::read_buf]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::io::Buffered>::set_flush_pipeline", "Argument[0]", "Argument[self].Field[crate::proto::h1::io::Buffered::flush_pipeline]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::io::Buffered>::set_max_buf_size", "Argument[0]", "Argument[self].Field[crate::proto::h1::io::Buffered::read_buf_strategy].Field[crate::proto::h1::io::ReadStrategy::Adaptive::max]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::io::Buffered>::set_max_buf_size", "Argument[0]", "Argument[self].Field[crate::proto::h1::io::Buffered::write_buf].Field[crate::proto::h1::io::WriteBuf::max_buf_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::io::Buffered>::set_read_buf_exact_size", "Argument[0]", "Argument[self].Field[crate::proto::h1::io::Buffered::read_buf_strategy].Field[crate::proto::h1::io::ReadStrategy::Exact(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::io::Buffered>::write_buf", "Argument[self].Field[crate::proto::h1::io::Buffered::write_buf]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::io::Cursor as crate::buf::buf_impl::Buf>::remaining", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::io::Cursor>::new", "Argument[0]", "ReturnValue.Field[crate::proto::h1::io::Cursor::bytes]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h2::client::ConnMapErr as crate::future::FusedFuture>::is_terminated", "Argument[self].Field[crate::proto::h2::client::ConnMapErr::is_terminated]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h2::ping::Recorder>::for_stream", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h2::server::Server>::new", "Argument[1]", "ReturnValue.Field[crate::proto::h2::server::Server::service]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h2::server::Server>::new", "Argument[2].Field[crate::proto::h2::server::Config::date_header]", "ReturnValue.Field[crate::proto::h2::server::Server::date_header]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h2::server::Server>::new", "Argument[3]", "ReturnValue.Field[crate::proto::h2::server::Server::exec]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h2::server::Server>::new", "Argument[4]", "ReturnValue.Field[crate::proto::h2::server::Server::timer]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::rt::io::ReadBuf>::init_len", "Argument[self].Field[crate::rt::io::ReadBuf::init]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::rt::io::ReadBuf>::len", "Argument[self].Field[crate::rt::io::ReadBuf::filled]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::rt::io::ReadBuf>::new", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::rt::io::ReadBuf>::uninit", "Argument[0]", "ReturnValue.Field[crate::rt::io::ReadBuf::raw]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::rt::io::ReadBufCursor>::as_mut", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::rt::io::ReadBufCursor>::remaining", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::auto_date_header", "Argument[0]", "Argument[self].Field[crate::server::conn::http1::Builder::date_header]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::auto_date_header", "Argument[0]", "ReturnValue.Field[crate::server::conn::http1::Builder::date_header]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::auto_date_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::half_close", "Argument[0]", "Argument[self].Field[crate::server::conn::http1::Builder::h1_half_close]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::half_close", "Argument[0]", "ReturnValue.Field[crate::server::conn::http1::Builder::h1_half_close]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::half_close", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::header_read_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::ignore_invalid_headers", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::keep_alive", "Argument[0]", "Argument[self].Field[crate::server::conn::http1::Builder::h1_keep_alive]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::keep_alive", "Argument[0]", "ReturnValue.Field[crate::server::conn::http1::Builder::h1_keep_alive]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::keep_alive", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::max_buf_size", "Argument[0]", "Argument[self].Field[crate::server::conn::http1::Builder::max_buf_size].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::max_buf_size", "Argument[0]", "ReturnValue.Field[crate::server::conn::http1::Builder::max_buf_size].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::max_buf_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::max_headers", "Argument[0]", "Argument[self].Field[crate::server::conn::http1::Builder::h1_max_headers].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::max_headers", "Argument[0]", "ReturnValue.Field[crate::server::conn::http1::Builder::h1_max_headers].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::max_headers", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::pipeline_flush", "Argument[0]", "Argument[self].Field[crate::server::conn::http1::Builder::pipeline_flush]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::pipeline_flush", "Argument[0]", "ReturnValue.Field[crate::server::conn::http1::Builder::pipeline_flush]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::pipeline_flush", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::preserve_header_case", "Argument[0]", "Argument[self].Field[crate::server::conn::http1::Builder::h1_preserve_header_case]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::preserve_header_case", "Argument[0]", "ReturnValue.Field[crate::server::conn::http1::Builder::h1_preserve_header_case]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::preserve_header_case", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::timer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::title_case_headers", "Argument[0]", "Argument[self].Field[crate::server::conn::http1::Builder::h1_title_case_headers]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::title_case_headers", "Argument[0]", "ReturnValue.Field[crate::server::conn::http1::Builder::h1_title_case_headers]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::title_case_headers", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::writev", "Argument[0]", "Argument[self].Field[crate::server::conn::http1::Builder::h1_writev].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::writev", "Argument[0]", "ReturnValue.Field[crate::server::conn::http1::Builder::h1_writev].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Builder>::writev", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http1::Connection>::with_upgrades", "Argument[self]", "ReturnValue.Field[crate::server::conn::http1::UpgradeableConnection::inner].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::adaptive_window", "Argument[0]", "Argument[self].Field[crate::server::conn::http2::Builder::h2_builder].Field[crate::proto::h2::server::Config::adaptive_window]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::adaptive_window", "Argument[0]", "ReturnValue.Field[crate::server::conn::http2::Builder::h2_builder].Field[crate::proto::h2::server::Config::adaptive_window]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::adaptive_window", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::auto_date_header", "Argument[0]", "Argument[self].Field[crate::server::conn::http2::Builder::h2_builder].Field[crate::proto::h2::server::Config::date_header]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::auto_date_header", "Argument[0]", "ReturnValue.Field[crate::server::conn::http2::Builder::h2_builder].Field[crate::proto::h2::server::Config::date_header]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::auto_date_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::enable_connect_protocol", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::initial_connection_window_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::initial_stream_window_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::keep_alive_interval", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::keep_alive_timeout", "Argument[0]", "Argument[self].Field[crate::server::conn::http2::Builder::h2_builder].Field[crate::proto::h2::server::Config::keep_alive_timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::keep_alive_timeout", "Argument[0]", "ReturnValue.Field[crate::server::conn::http2::Builder::h2_builder].Field[crate::proto::h2::server::Config::keep_alive_timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::keep_alive_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::max_concurrent_streams", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::max_frame_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::max_header_list_size", "Argument[0]", "Argument[self].Field[crate::server::conn::http2::Builder::h2_builder].Field[crate::proto::h2::server::Config::max_header_list_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::max_header_list_size", "Argument[0]", "ReturnValue.Field[crate::server::conn::http2::Builder::h2_builder].Field[crate::proto::h2::server::Config::max_header_list_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::max_header_list_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::max_local_error_reset_streams", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::max_pending_accept_reset_streams", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::max_send_buf_size", "Argument[0]", "Argument[self].Field[crate::server::conn::http2::Builder::h2_builder].Field[crate::proto::h2::server::Config::max_send_buffer_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::max_send_buf_size", "Argument[0]", "ReturnValue.Field[crate::server::conn::http2::Builder::h2_builder].Field[crate::proto::h2::server::Config::max_send_buffer_size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::max_send_buf_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::new", "Argument[0]", "ReturnValue.Field[crate::server::conn::http2::Builder::exec]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::serve_connection", "Argument[1]", "ReturnValue.Field[crate::server::conn::http2::Connection::conn].Field[crate::proto::h2::server::Server::service]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::serve_connection", "Argument[self].Field[crate::server::conn::http2::Builder::exec].Reference", "ReturnValue.Field[crate::server::conn::http2::Connection::conn].Field[crate::proto::h2::server::Server::exec]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::serve_connection", "Argument[self].Field[crate::server::conn::http2::Builder::timer].Reference", "ReturnValue.Field[crate::server::conn::http2::Connection::conn].Field[crate::proto::h2::server::Server::timer]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::serve_connection", "Argument[self].Field[crate::server::conn::http2::Builder::timer]", "ReturnValue.Field[crate::server::conn::http2::Connection::conn].Field[crate::proto::h2::server::Server::timer]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::server::conn::http2::Builder>::timer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::service::util::ServiceFn as crate::clone::Clone>::clone", "Argument[self].Field[crate::service::util::ServiceFn::f].Reference", "ReturnValue.Field[crate::service::util::ServiceFn::f]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::service::util::ServiceFn as crate::clone::Clone>::clone", "Argument[self].Field[crate::service::util::ServiceFn::f]", "ReturnValue.Field[crate::service::util::ServiceFn::f]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::service::util::ServiceFn as crate::service::service::Service>::call", "Argument[0]", "Argument[self]", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::service::util::ServiceFn as crate::service::service::Service>::call", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::support::tokiort::TokioIo>::inner", "Argument[self].Field[crate::support::tokiort::TokioIo::inner]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::support::tokiort::TokioIo>::new", "Argument[0]", "ReturnValue.Field[crate::support::tokiort::TokioIo::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::support::trailers::StreamBodyWithTrailers>::new", "Argument[0]", "ReturnValue.Field[crate::support::trailers::StreamBodyWithTrailers::stream]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::support::trailers::StreamBodyWithTrailers>::set_trailers", "Argument[0]", "Argument[self].Field[crate::support::trailers::StreamBodyWithTrailers::trailers].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::support::trailers::StreamBodyWithTrailers>::with_trailers", "Argument[0]", "ReturnValue.Field[crate::support::trailers::StreamBodyWithTrailers::stream]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::support::trailers::StreamBodyWithTrailers>::with_trailers", "Argument[1]", "ReturnValue.Field[crate::support::trailers::StreamBodyWithTrailers::trailers].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "crate::proto::h2::client::handshake", "Argument[1]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::proto::h2::client::ClientTask::req_rx]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "crate::proto::h2::client::handshake", "Argument[3]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::proto::h2::client::ClientTask::executor]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "crate::proto::h2::ping::channel", "Argument[1]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "crate::service::util::service_fn", "Argument[0]", "ReturnValue.Field[crate::service::util::ServiceFn::f]", "value", "dfc-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: sinkModel
|
||||
data:
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::common::time::Time>::check", "Argument[1]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::conn::Conn>::poll_read_body", "Argument[self]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::conn::Conn>::write_body", "Argument[self]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::conn::Conn>::write_body_and_end", "Argument[self]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::conn::Conn>::write_trailers", "Argument[self]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::role::Client as crate::proto::h1::Http1Transaction>::encode", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "<crate::proto::h1::role::Server as crate::proto::h1::Http1Transaction>::encode", "Argument[0]", "log-injection", "df-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: sourceModel
|
||||
data:
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "crate::ffi::body::hyper_buf_bytes", "ReturnValue", "pointer-invalidate", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "crate::ffi::http_types::hyper_response_reason_phrase", "ReturnValue", "pointer-invalidate", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "crate::ffi::hyper_version", "ReturnValue", "pointer-invalidate", "df-generated"]
|
||||
- ["repo:https://github.com/hyperium/hyper:hyper", "crate::ffi::task::hyper_executor_new", "ReturnValue", "pointer-invalidate", "df-generated"]
|
||||
@@ -0,0 +1,19 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/rust-lang/libc:libc-test", "<crate::style::StyleChecker>::check_file", "Argument[0]", "Argument[self]", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc-test", "<crate::style::StyleChecker>::reset_state", "Argument[self].Field[crate::style::StyleChecker::errors]", "Argument[self].Reference.Field[crate::style::StyleChecker::errors]", "value", "dfc-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: sinkModel
|
||||
data:
|
||||
- ["repo:https://github.com/rust-lang/libc:libc-test", "<crate::style::StyleChecker>::check_file", "Argument[0]", "path-injection", "df-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: sourceModel
|
||||
data:
|
||||
- ["repo:https://github.com/rust-lang/libc:libc-test", "<crate::style::StyleChecker>::check_file", "ReturnValue", "file", "df-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc-test", "<crate::style::StyleChecker>::finalize", "ReturnValue", "file", "df-generated"]
|
||||
@@ -0,0 +1,28 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "<crate::unix::bsd::apple::qos_class_t as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "<crate::unix::bsd::apple::siginfo_t>::si_addr", "Argument[self].Field[crate::unix::bsd::apple::siginfo_t::si_addr]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "<crate::unix::bsd::apple::siginfo_t>::si_pid", "Argument[self].Field[crate::unix::bsd::apple::siginfo_t::si_pid]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "<crate::unix::bsd::apple::siginfo_t>::si_status", "Argument[self].Field[crate::unix::bsd::apple::siginfo_t::si_status]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "<crate::unix::bsd::apple::siginfo_t>::si_uid", "Argument[self].Field[crate::unix::bsd::apple::siginfo_t::si_uid]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "<crate::unix::bsd::apple::sysdir_search_path_directory_t as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "<crate::unix::bsd::apple::sysdir_search_path_domain_mask_t as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "<crate::unix::bsd::apple::timezone as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "crate::unix::bsd::QCMD", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "crate::unix::bsd::QCMD", "Argument[1]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "crate::unix::bsd::WEXITSTATUS", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "crate::unix::bsd::WTERMSIG", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "crate::unix::bsd::apple::CMSG_LEN", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "crate::unix::bsd::apple::CMSG_NXTHDR", "Argument[1]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "crate::unix::bsd::apple::CMSG_SPACE", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "crate::unix::bsd::apple::VM_MAKE_TAG", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "crate::unix::bsd::apple::WSTOPSIG", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "crate::unix::bsd::apple::_WSTATUS", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "crate::unix::bsd::apple::major", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "crate::unix::bsd::apple::makedev", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "crate::unix::bsd::apple::makedev", "Argument[1]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-lang/libc:libc", "crate::unix::bsd::apple::minor", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
@@ -0,0 +1,59 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::Metadata>::level", "Argument[self].Field[crate::Metadata::level]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::Metadata>::target", "Argument[self].Field[crate::Metadata::target]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::MetadataBuilder>::build", "Argument[self].Field[crate::MetadataBuilder::metadata].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::MetadataBuilder>::build", "Argument[self].Field[crate::MetadataBuilder::metadata]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::MetadataBuilder>::level", "Argument[0]", "Argument[self].Field[crate::MetadataBuilder::metadata].Field[crate::Metadata::level]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::MetadataBuilder>::level", "Argument[0]", "ReturnValue.Field[crate::MetadataBuilder::metadata].Field[crate::Metadata::level]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::MetadataBuilder>::level", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::MetadataBuilder>::target", "Argument[0]", "Argument[self].Field[crate::MetadataBuilder::metadata].Field[crate::Metadata::target]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::MetadataBuilder>::target", "Argument[0]", "ReturnValue.Field[crate::MetadataBuilder::metadata].Field[crate::Metadata::target]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::MetadataBuilder>::target", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::Record>::args", "Argument[self].Field[crate::Record::args]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::Record>::file", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::Record>::key_values", "Argument[self].Field[crate::Record::key_values].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::Record>::key_values", "Argument[self].Field[crate::Record::key_values].Field[crate::KeyValues(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::Record>::level", "Argument[self].Field[crate::Record::metadata].Field[crate::Metadata::level]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::Record>::line", "Argument[self].Field[crate::Record::line]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::Record>::metadata", "Argument[self].Field[crate::Record::metadata]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::Record>::module_path", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::Record>::target", "Argument[self].Field[crate::Record::metadata].Field[crate::Metadata::target]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::Record>::to_builder", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::RecordBuilder>::args", "Argument[0]", "Argument[self].Field[crate::RecordBuilder::record].Field[crate::Record::args]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::RecordBuilder>::args", "Argument[0]", "ReturnValue.Field[crate::RecordBuilder::record].Field[crate::Record::args]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::RecordBuilder>::args", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::RecordBuilder>::build", "Argument[self].Field[crate::RecordBuilder::record].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::RecordBuilder>::build", "Argument[self].Field[crate::RecordBuilder::record]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::RecordBuilder>::file", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::RecordBuilder>::file_static", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::RecordBuilder>::key_values", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::RecordBuilder>::level", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::RecordBuilder>::line", "Argument[0]", "Argument[self].Field[crate::RecordBuilder::record].Field[crate::Record::line]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::RecordBuilder>::line", "Argument[0]", "ReturnValue.Field[crate::RecordBuilder::record].Field[crate::Record::line]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::RecordBuilder>::line", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::RecordBuilder>::metadata", "Argument[0]", "Argument[self].Field[crate::RecordBuilder::record].Field[crate::Record::metadata]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::RecordBuilder>::metadata", "Argument[0]", "ReturnValue.Field[crate::RecordBuilder::record].Field[crate::Record::metadata]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::RecordBuilder>::metadata", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::RecordBuilder>::module_path", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::RecordBuilder>::module_path_static", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::RecordBuilder>::target", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::borrow::Cow as crate::kv::key::ToKey>::to_key", "Argument[self]", "ReturnValue.Field[crate::kv::key::Key::key]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::kv::error::Error>::from_value", "Argument[0]", "ReturnValue.Field[crate::kv::error::Error::inner].Field[crate::kv::error::Inner::Value(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::kv::error::Error>::into_value", "Argument[self].Field[crate::kv::error::Error::inner].Field[crate::kv::error::Inner::Value(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::kv::error::Error>::msg", "Argument[0]", "ReturnValue.Field[crate::kv::error::Error::inner].Field[crate::kv::error::Inner::Msg(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::kv::key::Key as crate::borrow::Borrow>::borrow", "Argument[self].Field[crate::kv::key::Key::key]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::kv::key::Key as crate::convert::AsRef>::as_ref", "Argument[self].Field[crate::kv::key::Key::key]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::kv::key::Key as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::kv::key::Key::key]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::kv::key::Key as crate::kv::key::ToKey>::to_key", "Argument[self].Field[crate::kv::key::Key::key]", "ReturnValue.Field[crate::kv::key::Key::key]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::kv::key::Key>::as_str", "Argument[self].Field[crate::kv::key::Key::key]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::kv::key::Key>::from_str", "Argument[0]", "ReturnValue.Field[crate::kv::key::Key::key]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::kv::key::Key>::to_borrowed_str", "Argument[self].Field[crate::kv::key::Key::key]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::kv::value::Value as crate::kv::value::ToValue>::to_value", "Argument[self].Field[crate::kv::value::Value::inner].Reference", "ReturnValue.Field[crate::kv::value::Value::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::kv::value::Value as crate::kv::value::ToValue>::to_value", "Argument[self].Field[crate::kv::value::Value::inner]", "ReturnValue.Field[crate::kv::value::Value::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<crate::string::String as crate::kv::key::ToKey>::to_key", "Argument[self]", "ReturnValue.Field[crate::kv::key::Key::key]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-lang/log:log", "<str as crate::kv::key::ToKey>::to_key", "Argument[self]", "ReturnValue.Field[crate::kv::key::Key::key]", "value", "dfc-generated"]
|
||||
@@ -0,0 +1,168 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::aarch64::neon::memchr::One>::find", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::aarch64::neon::memchr::One>::find_raw", "Argument[0]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::aarch64::neon::memchr::One>::iter", "Argument[self]", "ReturnValue.Field[crate::arch::aarch64::neon::memchr::OneIter::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::aarch64::neon::memchr::One>::new_unchecked", "Argument[0]", "ReturnValue.Field[crate::arch::aarch64::neon::memchr::One(0)].Field[crate::arch::generic::memchr::One::s1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::aarch64::neon::memchr::OneIter as crate::iter::traits::iterator::Iterator>::next", "Argument[self].Field[crate::arch::aarch64::neon::memchr::OneIter::it].Field[crate::arch::generic::memchr::Iter::start]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::aarch64::neon::memchr::Three>::find", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::aarch64::neon::memchr::Three>::find_raw", "Argument[0]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::aarch64::neon::memchr::Three>::iter", "Argument[self]", "ReturnValue.Field[crate::arch::aarch64::neon::memchr::ThreeIter::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::aarch64::neon::memchr::Three>::new_unchecked", "Argument[0]", "ReturnValue.Field[crate::arch::aarch64::neon::memchr::Three(0)].Field[crate::arch::generic::memchr::Three::s1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::aarch64::neon::memchr::Three>::new_unchecked", "Argument[1]", "ReturnValue.Field[crate::arch::aarch64::neon::memchr::Three(0)].Field[crate::arch::generic::memchr::Three::s2]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::aarch64::neon::memchr::Three>::new_unchecked", "Argument[2]", "ReturnValue.Field[crate::arch::aarch64::neon::memchr::Three(0)].Field[crate::arch::generic::memchr::Three::s3]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::aarch64::neon::memchr::ThreeIter as crate::iter::traits::iterator::Iterator>::next", "Argument[self].Field[crate::arch::aarch64::neon::memchr::ThreeIter::it].Field[crate::arch::generic::memchr::Iter::start]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::aarch64::neon::memchr::Two>::find", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::aarch64::neon::memchr::Two>::find_raw", "Argument[0]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::aarch64::neon::memchr::Two>::iter", "Argument[self]", "ReturnValue.Field[crate::arch::aarch64::neon::memchr::TwoIter::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::aarch64::neon::memchr::Two>::new_unchecked", "Argument[0]", "ReturnValue.Field[crate::arch::aarch64::neon::memchr::Two(0)].Field[crate::arch::generic::memchr::Two::s1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::aarch64::neon::memchr::Two>::new_unchecked", "Argument[1]", "ReturnValue.Field[crate::arch::aarch64::neon::memchr::Two(0)].Field[crate::arch::generic::memchr::Two::s2]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::aarch64::neon::memchr::TwoIter as crate::iter::traits::iterator::Iterator>::next", "Argument[self].Field[crate::arch::aarch64::neon::memchr::TwoIter::it].Field[crate::arch::generic::memchr::Iter::start]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::One>::find", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::One>::find_raw", "Argument[0]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::One>::iter", "Argument[self]", "ReturnValue.Field[crate::arch::all::memchr::OneIter::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::One>::new", "Argument[0]", "ReturnValue.Field[crate::arch::all::memchr::One::s1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::One>::try_new", "Argument[0]", "ReturnValue.Field[crate::option::Option::Some(0)].Field[crate::arch::all::memchr::One::s1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::OneIter as crate::iter::traits::iterator::Iterator>::next", "Argument[self].Field[crate::arch::all::memchr::OneIter::it].Field[crate::arch::generic::memchr::Iter::start]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::Three>::find", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::Three>::find_raw", "Argument[0]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::Three>::iter", "Argument[self]", "ReturnValue.Field[crate::arch::all::memchr::ThreeIter::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::Three>::new", "Argument[0]", "ReturnValue.Field[crate::arch::all::memchr::Three::s1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::Three>::new", "Argument[1]", "ReturnValue.Field[crate::arch::all::memchr::Three::s2]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::Three>::new", "Argument[2]", "ReturnValue.Field[crate::arch::all::memchr::Three::s3]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::Three>::try_new", "Argument[0]", "ReturnValue.Field[crate::option::Option::Some(0)].Field[crate::arch::all::memchr::Three::s1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::Three>::try_new", "Argument[1]", "ReturnValue.Field[crate::option::Option::Some(0)].Field[crate::arch::all::memchr::Three::s2]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::Three>::try_new", "Argument[2]", "ReturnValue.Field[crate::option::Option::Some(0)].Field[crate::arch::all::memchr::Three::s3]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::ThreeIter as crate::iter::traits::iterator::Iterator>::next", "Argument[self].Field[crate::arch::all::memchr::ThreeIter::it].Field[crate::arch::generic::memchr::Iter::start]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::Two>::find", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::Two>::find_raw", "Argument[0]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::Two>::iter", "Argument[self]", "ReturnValue.Field[crate::arch::all::memchr::TwoIter::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::Two>::new", "Argument[0]", "ReturnValue.Field[crate::arch::all::memchr::Two::s1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::Two>::new", "Argument[1]", "ReturnValue.Field[crate::arch::all::memchr::Two::s2]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::Two>::try_new", "Argument[0]", "ReturnValue.Field[crate::option::Option::Some(0)].Field[crate::arch::all::memchr::Two::s1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::Two>::try_new", "Argument[1]", "ReturnValue.Field[crate::option::Option::Some(0)].Field[crate::arch::all::memchr::Two::s2]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::memchr::TwoIter as crate::iter::traits::iterator::Iterator>::next", "Argument[self].Field[crate::arch::all::memchr::TwoIter::it].Field[crate::arch::generic::memchr::Iter::start]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::packedpair::Finder>::new", "Argument[0].Element", "ReturnValue.Field[crate::option::Option::Some(0)].Field[crate::arch::all::packedpair::Finder::byte1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::packedpair::Finder>::new", "Argument[0].Element", "ReturnValue.Field[crate::option::Option::Some(0)].Field[crate::arch::all::packedpair::Finder::byte2]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::packedpair::Finder>::pair", "Argument[self].Field[crate::arch::all::packedpair::Finder::pair]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::packedpair::Finder>::with_pair", "Argument[0].Element", "ReturnValue.Field[crate::option::Option::Some(0)].Field[crate::arch::all::packedpair::Finder::byte1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::packedpair::Finder>::with_pair", "Argument[0].Element", "ReturnValue.Field[crate::option::Option::Some(0)].Field[crate::arch::all::packedpair::Finder::byte2]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::packedpair::Finder>::with_pair", "Argument[1]", "ReturnValue.Field[crate::option::Option::Some(0)].Field[crate::arch::all::packedpair::Finder::pair]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::packedpair::Pair>::index1", "Argument[self].Field[crate::arch::all::packedpair::Pair::index1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::packedpair::Pair>::index2", "Argument[self].Field[crate::arch::all::packedpair::Pair::index2]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::packedpair::Pair>::with_indices", "Argument[1]", "ReturnValue.Field[crate::option::Option::Some(0)].Field[crate::arch::all::packedpair::Pair::index1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::packedpair::Pair>::with_indices", "Argument[2]", "ReturnValue.Field[crate::option::Option::Some(0)].Field[crate::arch::all::packedpair::Pair::index2]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::rabinkarp::Finder>::find", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::rabinkarp::Finder>::find_raw", "Argument[0]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::all::shiftor::Finder>::find", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Iter>::count", "Argument[0].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Iter>::count", "Argument[self].Field[crate::arch::generic::memchr::Iter::end]", "Argument[0].Parameter[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Iter>::count", "Argument[self].Field[crate::arch::generic::memchr::Iter::start]", "Argument[0].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Iter>::new", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Iter>::next", "Argument[self].Field[crate::arch::generic::memchr::Iter::end]", "Argument[0].Parameter[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Iter>::next", "Argument[self].Field[crate::arch::generic::memchr::Iter::start]", "Argument[0].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Iter>::next", "Argument[self].Field[crate::arch::generic::memchr::Iter::start]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Iter>::next_back", "Argument[self].Field[crate::arch::generic::memchr::Iter::end]", "Argument[0].Parameter[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Iter>::next_back", "Argument[self].Field[crate::arch::generic::memchr::Iter::start]", "Argument[0].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::One>::needle1", "Argument[self].Field[crate::arch::generic::memchr::One::s1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::One>::new", "Argument[0]", "ReturnValue.Field[crate::arch::generic::memchr::One::s1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Three>::needle1", "Argument[self].Field[crate::arch::generic::memchr::Three::s1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Three>::needle2", "Argument[self].Field[crate::arch::generic::memchr::Three::s2]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Three>::needle3", "Argument[self].Field[crate::arch::generic::memchr::Three::s3]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Three>::new", "Argument[0]", "ReturnValue.Field[crate::arch::generic::memchr::Three::s1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Three>::new", "Argument[1]", "ReturnValue.Field[crate::arch::generic::memchr::Three::s2]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Three>::new", "Argument[2]", "ReturnValue.Field[crate::arch::generic::memchr::Three::s3]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Two>::needle1", "Argument[self].Field[crate::arch::generic::memchr::Two::s1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Two>::needle2", "Argument[self].Field[crate::arch::generic::memchr::Two::s2]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Two>::new", "Argument[0]", "ReturnValue.Field[crate::arch::generic::memchr::Two::s1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::memchr::Two>::new", "Argument[1]", "ReturnValue.Field[crate::arch::generic::memchr::Two::s2]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::packedpair::Finder>::min_haystack_len", "Argument[self].Field[crate::arch::generic::packedpair::Finder::min_haystack_len]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::packedpair::Finder>::new", "Argument[1]", "ReturnValue.Field[crate::arch::generic::packedpair::Finder::pair]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::packedpair::Finder>::pair", "Argument[self].Field[crate::arch::generic::packedpair::Finder::pair]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::cow::CowBytes>::into_owned", "Argument[self].Field[0].Field[crate::cow::Imp::Owned(0)]", "ReturnValue.Field[crate::cow::CowBytes(0)].Field[crate::cow::Imp::Owned(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::cow::CowBytes>::into_owned", "Argument[self].Field[crate::cow::CowBytes(0)].Field[crate::cow::Imp::Owned(0)]", "ReturnValue.Field[crate::cow::CowBytes(0)].Field[crate::cow::Imp::Owned(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memchr::Memchr2>::new", "Argument[0]", "ReturnValue.Field[crate::memchr::Memchr2::needle1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memchr::Memchr2>::new", "Argument[1]", "ReturnValue.Field[crate::memchr::Memchr2::needle2]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memchr::Memchr3>::new", "Argument[0]", "ReturnValue.Field[crate::memchr::Memchr3::needle1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memchr::Memchr3>::new", "Argument[1]", "ReturnValue.Field[crate::memchr::Memchr3::needle2]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memchr::Memchr3>::new", "Argument[2]", "ReturnValue.Field[crate::memchr::Memchr3::needle3]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memchr::Memchr>::new", "Argument[0]", "ReturnValue.Field[crate::memchr::Memchr::needle1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FindIter as crate::iter::traits::iterator::Iterator>::next", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FindIter>::into_owned", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FindIter>::new", "Argument[0]", "ReturnValue.Field[crate::memmem::FindIter::haystack]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FindIter>::new", "Argument[1]", "ReturnValue.Field[crate::memmem::FindIter::finder]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FindRevIter>::into_owned", "Argument[self].Field[crate::memmem::FindRevIter::finder].Field[crate::memmem::FinderRev::searcher]", "ReturnValue.Field[crate::memmem::FindRevIter::finder].Field[crate::memmem::FinderRev::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FindRevIter>::into_owned", "Argument[self].Field[crate::memmem::FindRevIter::haystack]", "ReturnValue.Field[crate::memmem::FindRevIter::haystack]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FindRevIter>::into_owned", "Argument[self].Field[crate::memmem::FindRevIter::pos]", "ReturnValue.Field[crate::memmem::FindRevIter::pos]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FindRevIter>::new", "Argument[0]", "ReturnValue.Field[crate::memmem::FindRevIter::haystack]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FindRevIter>::new", "Argument[1]", "ReturnValue.Field[crate::memmem::FindRevIter::finder]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::Finder>::as_ref", "Argument[self].Field[crate::memmem::Finder::searcher].Reference", "ReturnValue.Field[crate::memmem::Finder::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::Finder>::as_ref", "Argument[self].Field[crate::memmem::Finder::searcher]", "ReturnValue.Field[crate::memmem::Finder::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::Finder>::find_iter", "Argument[0]", "ReturnValue.Field[crate::memmem::FindIter::haystack]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::Finder>::find_iter", "Argument[self].Field[crate::memmem::Finder::searcher].Reference", "ReturnValue.Field[crate::memmem::FindIter::finder].Field[crate::memmem::Finder::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::Finder>::find_iter", "Argument[self].Field[crate::memmem::Finder::searcher]", "ReturnValue.Field[crate::memmem::FindIter::finder].Field[crate::memmem::Finder::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::Finder>::into_owned", "Argument[self].Field[crate::memmem::Finder::searcher].Reference", "ReturnValue.Field[crate::memmem::Finder::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::Finder>::into_owned", "Argument[self].Field[crate::memmem::Finder::searcher]", "ReturnValue.Field[crate::memmem::Finder::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FinderBuilder>::prefilter", "Argument[0]", "Argument[self].Field[crate::memmem::FinderBuilder::prefilter]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FinderBuilder>::prefilter", "Argument[0]", "ReturnValue.Field[crate::memmem::FinderBuilder::prefilter]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FinderBuilder>::prefilter", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FinderRev>::as_ref", "Argument[self].Field[crate::memmem::FinderRev::searcher].Reference", "ReturnValue.Field[crate::memmem::FinderRev::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FinderRev>::as_ref", "Argument[self].Field[crate::memmem::FinderRev::searcher]", "ReturnValue.Field[crate::memmem::FinderRev::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FinderRev>::into_owned", "Argument[self].Field[crate::memmem::FinderRev::searcher].Reference", "ReturnValue.Field[crate::memmem::FinderRev::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FinderRev>::into_owned", "Argument[self].Field[crate::memmem::FinderRev::searcher]", "ReturnValue.Field[crate::memmem::FinderRev::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FinderRev>::rfind_iter", "Argument[0]", "ReturnValue.Field[crate::memmem::FindRevIter::haystack]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FinderRev>::rfind_iter", "Argument[self].Field[crate::memmem::FinderRev::searcher].Reference", "ReturnValue.Field[crate::memmem::FindRevIter::finder].Field[crate::memmem::FinderRev::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::FinderRev>::rfind_iter", "Argument[self].Field[crate::memmem::FinderRev::searcher]", "ReturnValue.Field[crate::memmem::FindRevIter::finder].Field[crate::memmem::FinderRev::searcher]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::searcher::Searcher>::find", "Argument[0]", "Argument[self]", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::searcher::Searcher>::find", "Argument[1]", "Argument[self]", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::searcher::Searcher>::find", "Argument[2]", "Argument[self]", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::searcher::Searcher>::find", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::memmem::searcher::SearcherRev>::new", "Argument[0].Element", "ReturnValue.Field[crate::memmem::searcher::SearcherRev::kind].Field[crate::memmem::searcher::SearcherRevKind::OneByte::needle]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::tests::memchr::Runner>::new", "Argument[0]", "ReturnValue.Field[crate::tests::memchr::Runner::needle_len]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::tests::packedpair::Runner>::fwd", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::tests::substring::Runner>::fwd", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::tests::substring::Runner>::rev", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::vector::SensibleMoveMask as crate::vector::MoveMask>::all_zeros_except_least_significant", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::vector::SensibleMoveMask as crate::vector::MoveMask>::and", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::vector::SensibleMoveMask as crate::vector::MoveMask>::and", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::vector::SensibleMoveMask as crate::vector::MoveMask>::clear_least_significant_bit", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::vector::SensibleMoveMask as crate::vector::MoveMask>::or", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::vector::SensibleMoveMask as crate::vector::MoveMask>::or", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::vector::aarch64neon::NeonMoveMask as crate::vector::MoveMask>::all_zeros_except_least_significant", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::vector::aarch64neon::NeonMoveMask as crate::vector::MoveMask>::and", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::vector::aarch64neon::NeonMoveMask as crate::vector::MoveMask>::and", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::vector::aarch64neon::NeonMoveMask as crate::vector::MoveMask>::clear_least_significant_bit", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::vector::aarch64neon::NeonMoveMask as crate::vector::MoveMask>::or", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::vector::aarch64neon::NeonMoveMask as crate::vector::MoveMask>::or", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<u8 as crate::ext::Byte>::to_char", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::arch::generic::memchr::count_byte_by_byte", "Argument[0].Reference", "Argument[2].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::arch::generic::memchr::fwd_byte_by_byte", "Argument[0].Reference", "Argument[2].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::arch::generic::memchr::fwd_byte_by_byte", "Argument[0]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::arch::generic::memchr::search_slice_with_raw", "Argument[0]", "Argument[1]", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::arch::generic::memchr::search_slice_with_raw", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::arch::generic::memchr::search_slice_with_raw", "Argument[1]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::memchr::memchr2_iter", "Argument[0]", "ReturnValue.Field[crate::memchr::Memchr2::needle1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::memchr::memchr2_iter", "Argument[1]", "ReturnValue.Field[crate::memchr::Memchr2::needle2]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::memchr::memchr3_iter", "Argument[0]", "ReturnValue.Field[crate::memchr::Memchr3::needle1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::memchr::memchr3_iter", "Argument[1]", "ReturnValue.Field[crate::memchr::Memchr3::needle2]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::memchr::memchr3_iter", "Argument[2]", "ReturnValue.Field[crate::memchr::Memchr3::needle3]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::memchr::memchr_iter", "Argument[0]", "ReturnValue.Field[crate::memchr::Memchr::needle1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::memmem::find", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::memmem::find_iter", "Argument[0]", "ReturnValue.Field[crate::memmem::FindIter::haystack]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::memmem::rfind_iter", "Argument[0]", "ReturnValue.Field[crate::memmem::FindRevIter::haystack]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::tests::substring::prop::prefix_is_substring", "Argument[0].Element", "Argument[1].Parameter[1].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::tests::substring::prop::prefix_is_substring", "Argument[0]", "Argument[1].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::tests::substring::prop::same_as_naive", "Argument[1]", "Argument[3].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::tests::substring::prop::same_as_naive", "Argument[2]", "Argument[3].Parameter[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::tests::substring::prop::suffix_is_substring", "Argument[0].Element", "Argument[1].Parameter[1].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "crate::tests::substring::prop::suffix_is_substring", "Argument[0]", "Argument[1].Parameter[0]", "value", "dfc-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: sinkModel
|
||||
data:
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::packedpair::Finder>::find", "Argument[self]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/BurntSushi/memchr:memchr", "<crate::arch::generic::packedpair::Finder>::find_prefilter", "Argument[self]", "log-injection", "df-generated"]
|
||||
27
rust/ql/lib/ext/generated/memchr/repo-shared.model.yml
Normal file
27
rust/ql/lib/ext/generated/memchr/repo-shared.model.yml
Normal file
@@ -0,0 +1,27 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo::shared", "<crate::Benchmark>::one_needle", "Argument[self].Field[crate::Benchmark::needles].Element", "ReturnValue.Field[crate::result::Result::Ok(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo::shared", "<crate::Benchmark>::one_needle_byte", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo::shared", "<crate::Benchmark>::three_needle_bytes", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo::shared", "<crate::Benchmark>::two_needle_bytes", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo::shared", "crate::count_memchr2", "Argument[0]", "Argument[3].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo::shared", "crate::count_memchr2", "Argument[1]", "Argument[3].Parameter[1]", "value", "dfc-generated"]
|
||||
- ["repo::shared", "crate::count_memchr2", "Argument[2]", "Argument[3].Parameter[2]", "value", "dfc-generated"]
|
||||
- ["repo::shared", "crate::count_memchr3", "Argument[0]", "Argument[4].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo::shared", "crate::count_memchr3", "Argument[1]", "Argument[4].Parameter[1]", "value", "dfc-generated"]
|
||||
- ["repo::shared", "crate::count_memchr3", "Argument[2]", "Argument[4].Parameter[2]", "value", "dfc-generated"]
|
||||
- ["repo::shared", "crate::count_memchr3", "Argument[3]", "Argument[4].Parameter[3]", "value", "dfc-generated"]
|
||||
- ["repo::shared", "crate::count_memchr", "Argument[0]", "Argument[2].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo::shared", "crate::count_memchr", "Argument[1]", "Argument[2].Parameter[1]", "value", "dfc-generated"]
|
||||
- ["repo::shared", "crate::count_memmem", "Argument[0]", "Argument[2].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo::shared", "crate::count_memmem", "Argument[1]", "Argument[2].Parameter[1]", "value", "dfc-generated"]
|
||||
- ["repo::shared", "crate::count_memmem_str", "Argument[0]", "Argument[2].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo::shared", "crate::count_memmem_str", "Argument[1]", "Argument[2].Parameter[1]", "value", "dfc-generated"]
|
||||
- ["repo::shared", "crate::run", "Argument[1]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo::shared", "crate::run_and_count", "Argument[1]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo::shared", "crate::run_and_count", "Argument[2]", "Argument[1]", "taint", "df-generated"]
|
||||
- ["repo::shared", "crate::run_and_count", "Argument[2]", "ReturnValue", "taint", "df-generated"]
|
||||
@@ -0,0 +1,21 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/matklad/once_cell:once_cell", "<crate::race::OnceNonZeroUsize>::get_or_init", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/matklad/once_cell:once_cell", "<crate::race::OnceNonZeroUsize>::get_or_try_init", "Argument[0].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/matklad/once_cell:once_cell", "<crate::race::OnceRef>::get_or_init", "Argument[0].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/matklad/once_cell:once_cell", "<crate::race::OnceRef>::get_or_try_init", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/matklad/once_cell:once_cell", "<crate::race::once_box::OnceBox>::get_or_init", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/matklad/once_cell:once_cell", "<crate::race::once_box::OnceBox>::get_or_try_init", "Argument[0].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/matklad/once_cell:once_cell", "<crate::sync::OnceCell as crate::clone::Clone>::clone_from", "Argument[0].Reference", "Argument[self].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/matklad/once_cell:once_cell", "<crate::sync::OnceCell>::set", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/matklad/once_cell:once_cell", "<crate::sync::OnceCell>::try_insert", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)].Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/matklad/once_cell:once_cell", "<crate::unsync::OnceCell as crate::clone::Clone>::clone_from", "Argument[0].Reference", "Argument[self].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/matklad/once_cell:once_cell", "<crate::unsync::OnceCell>::get_or_init", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/matklad/once_cell:once_cell", "<crate::unsync::OnceCell>::get_or_try_init", "Argument[0].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/matklad/once_cell:once_cell", "<crate::unsync::OnceCell>::set", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/matklad/once_cell:once_cell", "<crate::unsync::OnceCell>::try_insert", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)].Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/matklad/once_cell:once_cell", "<crate::unsync::OnceCell>::try_insert", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Reference", "value", "dfc-generated"]
|
||||
9
rust/ql/lib/ext/generated/rand/repo-benches.model.yml
Normal file
9
rust/ql/lib/ext/generated/rand/repo-benches.model.yml
Normal file
@@ -0,0 +1,9 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo::benches", "<crate::UnhintedIterator as crate::iter::traits::iterator::Iterator>::next", "Argument[self].Field[crate::UnhintedIterator::iter].Element", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo::benches", "<crate::WindowHintedIterator as crate::iter::traits::iterator::Iterator>::next", "Argument[self].Field[crate::WindowHintedIterator::iter].Element", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo::benches", "<crate::WindowHintedIterator as crate::iter::traits::iterator::Iterator>::size_hint", "Argument[self].Field[crate::WindowHintedIterator::window_size]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
@@ -0,0 +1,63 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<&_ as crate::distr::uniform::SampleBorrow>::borrow", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<_ as crate::distr::uniform::SampleBorrow>::borrow", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<bool as crate::distr::utils::BoolAsSIMD>::any", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::core_simd::vector::Simd as crate::distr::utils::FloatSIMDScalarUtils>::replace", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::distr::bernoulli::Bernoulli>::from_ratio", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::distr::bernoulli::Bernoulli>::from_ratio", "Argument[1]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::distr::bernoulli::Bernoulli>::new", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::distr::bernoulli::Bernoulli>::p", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::distr::distribution::Map as crate::distr::distribution::Distribution>::sample", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::distr::slice::Choose>::new", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::distr::slice::Choose::slice]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::distr::slice::Choose>::num_choices", "Argument[self].Field[crate::distr::slice::Choose::num_choices]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::distr::uniform::float::UniformFloat as crate::distr::uniform::UniformSampler>::sample", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::distr::weighted::weighted_index::WeightedIndex>::total_weight", "Argument[self].Field[crate::distr::weighted::weighted_index::WeightedIndex::total_weight].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::distr::weighted::weighted_index::WeightedIndex>::total_weight", "Argument[self].Field[crate::distr::weighted::weighted_index::WeightedIndex::total_weight]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::distr::weighted::weighted_index::WeightedIndex>::update_weights", "Argument[self].Field[crate::distr::weighted::weighted_index::WeightedIndex::total_weight].Reference", "Argument[self].Field[crate::distr::weighted::weighted_index::WeightedIndex::total_weight]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::distr::weighted::weighted_index::WeightedIndex>::weight", "Argument[self].Field[crate::distr::weighted::weighted_index::WeightedIndex::total_weight].Reference", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::distr::weighted::weighted_index::WeightedIndex>::weight", "Argument[self].Field[crate::distr::weighted::weighted_index::WeightedIndex::total_weight]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::distr::weighted::weighted_index::WeightedIndex>::weights", "Argument[self]", "ReturnValue.Field[crate::distr::weighted::weighted_index::WeightedIndexIter::weighted_index]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::distr::weighted::weighted_index::WeightedIndexIter as crate::clone::Clone>::clone", "Argument[self].Field[crate::distr::weighted::weighted_index::WeightedIndexIter::index]", "ReturnValue.Field[crate::distr::weighted::weighted_index::WeightedIndexIter::index]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::distr::weighted::weighted_index::WeightedIndexIter as crate::clone::Clone>::clone", "Argument[self].Field[crate::distr::weighted::weighted_index::WeightedIndexIter::weighted_index]", "ReturnValue.Field[crate::distr::weighted::weighted_index::WeightedIndexIter::weighted_index]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::rngs::mock::StepRng as crate::RngCore>::next_u32", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::rngs::mock::StepRng as crate::RngCore>::next_u64", "Argument[self].Field[crate::rngs::mock::StepRng::v]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::rngs::mock::StepRng>::new", "Argument[0]", "ReturnValue.Field[crate::rngs::mock::StepRng::v]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::rngs::mock::StepRng>::new", "Argument[1]", "ReturnValue.Field[crate::rngs::mock::StepRng::a]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::rngs::reseeding::ReseedingCore as crate::clone::Clone>::clone", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::rngs::reseeding::ReseedingRng>::new", "Argument[1]", "ReturnValue.Field[crate::rngs::reseeding::ReseedingCore::reseeder]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::seq::coin_flipper::CoinFlipper>::new", "Argument[0]", "ReturnValue.Field[crate::seq::coin_flipper::CoinFlipper::rng]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::seq::increasing_uniform::IncreasingUniform>::new", "Argument[0]", "ReturnValue.Field[crate::seq::increasing_uniform::IncreasingUniform::rng]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::seq::increasing_uniform::IncreasingUniform>::new", "Argument[1]", "ReturnValue.Field[crate::seq::increasing_uniform::IncreasingUniform::n]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::seq::increasing_uniform::IncreasingUniform>::next_index", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::seq::index_::IndexVec as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::seq::index_::IndexVec::U32(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::seq::index_::IndexVec as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::seq::index_::IndexVec::U64(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::seq::index_::IndexVec>::index", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::seq::index_::IndexVecIter as crate::iter::traits::iterator::Iterator>::next", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::seq::iterator::test::ChunkHintedIterator as crate::iter::traits::iterator::Iterator>::next", "Argument[self].Field[crate::seq::iterator::test::ChunkHintedIterator::chunk_size]", "Argument[self].Field[crate::seq::iterator::test::ChunkHintedIterator::chunk_remaining]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::seq::iterator::test::ChunkHintedIterator as crate::iter::traits::iterator::Iterator>::next", "Argument[self].Field[crate::seq::iterator::test::ChunkHintedIterator::iter].Element", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::seq::iterator::test::ChunkHintedIterator as crate::iter::traits::iterator::Iterator>::size_hint", "Argument[self].Field[crate::seq::iterator::test::ChunkHintedIterator::chunk_remaining]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::seq::iterator::test::UnhintedIterator as crate::iter::traits::iterator::Iterator>::next", "Argument[self].Field[crate::seq::iterator::test::UnhintedIterator::iter].Element", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::seq::iterator::test::WindowHintedIterator as crate::iter::traits::iterator::Iterator>::next", "Argument[self].Field[crate::seq::iterator::test::WindowHintedIterator::iter].Element", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::seq::iterator::test::WindowHintedIterator as crate::iter::traits::iterator::Iterator>::size_hint", "Argument[self].Field[crate::seq::iterator::test::WindowHintedIterator::window_size]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<crate::seq::slice::SliceChooseIter as crate::iter::traits::iterator::Iterator>::next", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<f32 as crate::distr::utils::FloatSIMDScalarUtils>::extract_lane", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<f32 as crate::distr::utils::FloatSIMDScalarUtils>::replace", "Argument[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<f32 as crate::distr::utils::FloatSIMDUtils>::cast_from_int", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<f64 as crate::distr::utils::FloatSIMDScalarUtils>::extract_lane", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<f64 as crate::distr::utils::FloatSIMDScalarUtils>::replace", "Argument[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<f64 as crate::distr::utils::FloatSIMDUtils>::cast_from_int", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<u16 as crate::distr::utils::WideningMultiply>::wmul", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<u16 as crate::distr::utils::WideningMultiply>::wmul", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<u32 as crate::distr::utils::WideningMultiply>::wmul", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<u32 as crate::distr::utils::WideningMultiply>::wmul", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<u32 as crate::seq::index_::UInt>::as_usize", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<u64 as crate::distr::utils::WideningMultiply>::wmul", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<u64 as crate::distr::utils::WideningMultiply>::wmul", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<u64 as crate::seq::index_::UInt>::as_usize", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<u8 as crate::distr::utils::WideningMultiply>::wmul", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand", "<u8 as crate::distr::utils::WideningMultiply>::wmul", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
@@ -0,0 +1,16 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/rust-random/rand:rand_chacha", "<crate::chacha::Array64 as crate::convert::AsMut>::as_mut", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_chacha", "<crate::chacha::Array64 as crate::convert::AsMut>::as_mut", "Argument[self].Field[crate::chacha::Array64(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_chacha", "<crate::chacha::Array64 as crate::convert::AsRef>::as_ref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_chacha", "<crate::chacha::Array64 as crate::convert::AsRef>::as_ref", "Argument[self].Field[crate::chacha::Array64(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_chacha", "<crate::chacha::ChaCha12Rng as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::chacha::ChaCha12Rng::rng].Field[crate::block::BlockRng::core]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_chacha", "<crate::chacha::ChaCha20Rng as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::chacha::ChaCha20Rng::rng].Field[crate::block::BlockRng::core]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_chacha", "<crate::chacha::ChaCha8Rng as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::chacha::ChaCha8Rng::rng].Field[crate::block::BlockRng::core]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_chacha", "crate::guts::diagonalize", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_chacha", "crate::guts::round", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_chacha", "crate::guts::undiagonalize", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
@@ -0,0 +1,15 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/rust-random/rand:rand_core", "<crate::UnwrapMut>::re", "Argument[self].Field[0]", "ReturnValue.Field[crate::UnwrapMut(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_core", "<crate::UnwrapMut>::re", "Argument[self].Field[crate::UnwrapMut(0)]", "ReturnValue.Field[crate::UnwrapMut(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_core", "<crate::block::BlockRng64 as crate::RngCore>::next_u32", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_core", "<crate::block::BlockRng64>::generate_and_set", "Argument[0]", "Argument[self].Field[crate::block::BlockRng64::index]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_core", "<crate::block::BlockRng64>::index", "Argument[self].Field[crate::block::BlockRng64::index]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_core", "<crate::block::BlockRng64>::new", "Argument[0]", "ReturnValue.Field[crate::block::BlockRng64::core]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_core", "<crate::block::BlockRng>::generate_and_set", "Argument[0]", "Argument[self].Field[crate::block::BlockRng::index]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_core", "<crate::block::BlockRng>::index", "Argument[self].Field[crate::block::BlockRng::index]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_core", "<crate::block::BlockRng>::new", "Argument[0]", "ReturnValue.Field[crate::block::BlockRng::core]", "value", "dfc-generated"]
|
||||
@@ -0,0 +1,10 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/rust-random/rand:rand_pcg", "<crate::pcg128::Lcg128Xsl64>::new", "Argument[0]", "ReturnValue.Field[crate::pcg128::Lcg128Xsl64::state]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_pcg", "<crate::pcg128::Mcg128Xsl64>::new", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_pcg", "<crate::pcg128cm::Lcg128CmDxsm64>::new", "Argument[0]", "ReturnValue.Field[crate::pcg128cm::Lcg128CmDxsm64::state]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rust-random/rand:rand_pcg", "<crate::pcg64::Lcg64Xsh32>::new", "Argument[0]", "ReturnValue.Field[crate::pcg64::Lcg64Xsh32::state]", "value", "dfc-generated"]
|
||||
@@ -1,5 +1,374 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<&str as crate::into_url::IntoUrlSealed>::as_str", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<&str as crate::into_url::IntoUrlSealed>::into_url", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::Url as crate::into_url::IntoUrlSealed>::into_url", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::body::Body as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::async_impl::body::Body::inner].Field[crate::async_impl::body::Inner::Reusable(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::body::Body>::into_stream", "Argument[self]", "ReturnValue.Field[crate::async_impl::body::DataStream(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::body::Body>::reusable", "Argument[0]", "ReturnValue.Field[crate::async_impl::body::Body::inner].Field[crate::async_impl::body::Inner::Reusable(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::body::Body>::try_reuse", "Argument[self].Field[crate::async_impl::body::Body::inner].Field[crate::async_impl::body::Inner::Reusable(0)]", "ReturnValue.Field[0].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::body::Body>::try_reuse", "Argument[self]", "ReturnValue.Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::Client>::delete", "Argument[self].Reference", "ReturnValue.Field[crate::async_impl::request::RequestBuilder::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::Client>::get", "Argument[self].Reference", "ReturnValue.Field[crate::async_impl::request::RequestBuilder::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::Client>::head", "Argument[self].Reference", "ReturnValue.Field[crate::async_impl::request::RequestBuilder::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::Client>::patch", "Argument[self].Reference", "ReturnValue.Field[crate::async_impl::request::RequestBuilder::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::Client>::post", "Argument[self].Reference", "ReturnValue.Field[crate::async_impl::request::RequestBuilder::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::Client>::put", "Argument[self].Reference", "ReturnValue.Field[crate::async_impl::request::RequestBuilder::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::Client>::request", "Argument[self].Reference", "ReturnValue.Field[crate::async_impl::request::RequestBuilder::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::add_crl", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::add_crls", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::add_root_certificate", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::brotli", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::build", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::nodelay]", "ReturnValue.Field[crate::connect::ConnectorBuilder::nodelay]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::build", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::tls_info]", "ReturnValue.Field[crate::connect::ConnectorBuilder::tls_info]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::connect_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::connection_verbose", "Argument[0]", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::connection_verbose]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::connection_verbose", "Argument[0]", "ReturnValue.Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::connection_verbose]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::connection_verbose", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::connector_layer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::cookie_provider", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::cookie_store", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::danger_accept_invalid_certs", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::danger_accept_invalid_hostnames", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::default_headers", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::deflate", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::dns_resolver", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::gzip", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::hickory_dns", "Argument[0]", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::hickory_dns]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::hickory_dns", "Argument[0]", "ReturnValue.Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::hickory_dns]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::hickory_dns", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http09_responses", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http1_allow_obsolete_multiline_headers_in_responses", "Argument[0]", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::http1_allow_obsolete_multiline_headers_in_responses]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http1_allow_obsolete_multiline_headers_in_responses", "Argument[0]", "ReturnValue.Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::http1_allow_obsolete_multiline_headers_in_responses]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http1_allow_obsolete_multiline_headers_in_responses", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http1_allow_spaces_after_header_name_in_responses", "Argument[0]", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::http1_allow_spaces_after_header_name_in_responses]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http1_allow_spaces_after_header_name_in_responses", "Argument[0]", "ReturnValue.Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::http1_allow_spaces_after_header_name_in_responses]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http1_allow_spaces_after_header_name_in_responses", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http1_ignore_invalid_headers_in_responses", "Argument[0]", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::http1_ignore_invalid_headers_in_responses]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http1_ignore_invalid_headers_in_responses", "Argument[0]", "ReturnValue.Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::http1_ignore_invalid_headers_in_responses]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http1_ignore_invalid_headers_in_responses", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http1_only", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http1_title_case_headers", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http2_adaptive_window", "Argument[0]", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::http2_adaptive_window]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http2_adaptive_window", "Argument[0]", "ReturnValue.Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::http2_adaptive_window]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http2_adaptive_window", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http2_initial_connection_window_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http2_initial_stream_window_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http2_keep_alive_interval", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http2_keep_alive_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http2_keep_alive_while_idle", "Argument[0]", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::http2_keep_alive_while_idle]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http2_keep_alive_while_idle", "Argument[0]", "ReturnValue.Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::http2_keep_alive_while_idle]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http2_keep_alive_while_idle", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http2_max_frame_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http2_max_header_list_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http2_prior_knowledge", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http3_conn_receive_window", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http3_max_idle_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http3_prior_knowledge", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http3_send_window", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::http3_stream_receive_window", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::https_only", "Argument[0]", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::https_only]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::https_only", "Argument[0]", "ReturnValue.Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::https_only]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::https_only", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::identity", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::local_address", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::max_tls_version", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::min_tls_version", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::no_proxy", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::pool_idle_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::pool_max_idle_per_host", "Argument[0]", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::pool_max_idle_per_host]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::pool_max_idle_per_host", "Argument[0]", "ReturnValue.Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::pool_max_idle_per_host]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::pool_max_idle_per_host", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::proxy", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::read_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::redirect", "Argument[0]", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::redirect_policy]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::redirect", "Argument[0]", "ReturnValue.Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::redirect_policy]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::redirect", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::referer", "Argument[0]", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::referer]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::referer", "Argument[0]", "ReturnValue.Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::referer]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::referer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::resolve", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::resolve_to_addrs", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tcp_keepalive", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tcp_nodelay", "Argument[0]", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::nodelay]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tcp_nodelay", "Argument[0]", "ReturnValue.Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::nodelay]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tcp_nodelay", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tls_built_in_native_certs", "Argument[0]", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::tls_built_in_certs_native]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tls_built_in_native_certs", "Argument[0]", "ReturnValue.Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::tls_built_in_certs_native]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tls_built_in_native_certs", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tls_built_in_root_certs", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tls_built_in_webpki_certs", "Argument[0]", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::tls_built_in_certs_webpki]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tls_built_in_webpki_certs", "Argument[0]", "ReturnValue.Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::tls_built_in_certs_webpki]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tls_built_in_webpki_certs", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tls_early_data", "Argument[0]", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::tls_enable_early_data]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tls_early_data", "Argument[0]", "ReturnValue.Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::tls_enable_early_data]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tls_early_data", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tls_info", "Argument[0]", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::tls_info]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tls_info", "Argument[0]", "ReturnValue.Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::tls_info]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tls_info", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tls_sni", "Argument[0]", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::tls_sni]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tls_sni", "Argument[0]", "ReturnValue.Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::tls_sni]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::tls_sni", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::trust_dns", "Argument[0]", "Argument[self].Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::hickory_dns]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::trust_dns", "Argument[0]", "ReturnValue.Field[crate::async_impl::client::ClientBuilder::config].Field[crate::async_impl::client::Config::hickory_dns]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::trust_dns", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::use_native_tls", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::use_preconfigured_tls", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::use_rustls_tls", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::user_agent", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::client::ClientBuilder>::zstd", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::decoder::Decoder>::detect", "Argument[1]", "ReturnValue.Field[crate::async_impl::decoder::Decoder::inner].Field[crate::async_impl::decoder::Inner::PlainText(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::decoder::Decoder>::into_stream", "Argument[self]", "ReturnValue.Field[crate::async_impl::decoder::IoStream(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::h3_client::H3Client>::new", "Argument[0]", "ReturnValue.Field[crate::async_impl::h3_client::H3Client::connector]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::h3_client::connect::H3Connector>::new", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::async_impl::h3_client::connect::H3Connector::resolver]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::h3_client::pool::Pool>::new_connection", "Argument[2]", "ReturnValue.Field[crate::async_impl::h3_client::pool::PoolClient::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::h3_client::pool::PoolClient>::new", "Argument[0]", "ReturnValue.Field[crate::async_impl::h3_client::pool::PoolClient::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::h3_client::pool::PoolConnection>::new", "Argument[0]", "ReturnValue.Field[crate::async_impl::h3_client::pool::PoolConnection::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::h3_client::pool::PoolConnection>::new", "Argument[1]", "ReturnValue.Field[crate::async_impl::h3_client::pool::PoolConnection::close_rx]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::h3_client::pool::PoolConnection>::pool", "Argument[self].Field[crate::async_impl::h3_client::pool::PoolConnection::client].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::h3_client::pool::PoolConnection>::pool", "Argument[self].Field[crate::async_impl::h3_client::pool::PoolConnection::client]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::multipart::FormParts>::boundary", "Argument[self].Field[crate::async_impl::multipart::FormParts::boundary]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::multipart::FormParts>::part", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::multipart::FormParts>::percent_encode_attr_chars", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::multipart::FormParts>::percent_encode_noop", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::multipart::FormParts>::percent_encode_path_segment", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::multipart::Part as crate::async_impl::multipart::PartProps>::metadata", "Argument[self].Field[crate::async_impl::multipart::Part::meta]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::multipart::Part as crate::async_impl::multipart::PartProps>::value_len", "Argument[self].Field[crate::async_impl::multipart::Part::body_length]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::multipart::Part>::mime_str", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::multipart::Part>::stream_with_length", "Argument[1]", "ReturnValue.Field[crate::async_impl::multipart::Part::body_length].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::multipart::PartMetadata>::file_name", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::multipart::PartMetadata>::fmt_fields", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::multipart::PartMetadata>::headers", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::multipart::PartMetadata>::mime", "Argument[0]", "Argument[self].Field[crate::async_impl::multipart::PartMetadata::mime].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::multipart::PartMetadata>::mime", "Argument[0]", "ReturnValue.Field[crate::async_impl::multipart::PartMetadata::mime].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::multipart::PartMetadata>::mime", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::Request>::body", "Argument[self].Field[crate::async_impl::request::Request::body].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::Request>::body_mut", "Argument[self].Field[crate::async_impl::request::Request::body]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::Request>::headers", "Argument[self].Field[crate::async_impl::request::Request::headers]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::Request>::headers_mut", "Argument[self].Field[crate::async_impl::request::Request::headers]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::Request>::method", "Argument[self].Field[crate::async_impl::request::Request::method]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::Request>::method_mut", "Argument[self].Field[crate::async_impl::request::Request::method]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::Request>::new", "Argument[0]", "ReturnValue.Field[crate::async_impl::request::Request::method]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::Request>::new", "Argument[1]", "ReturnValue.Field[crate::async_impl::request::Request::url]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::Request>::pieces", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::Request>::timeout", "Argument[self].Field[crate::async_impl::request::Request::timeout].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::Request>::timeout_mut", "Argument[self].Field[crate::async_impl::request::Request::timeout]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::Request>::try_clone", "Argument[self].Field[crate::async_impl::request::Request::method]", "ReturnValue.Field[crate::option::Option::Some(0)].Field[crate::async_impl::request::Request::method]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::Request>::try_clone", "Argument[self].Field[crate::async_impl::request::Request::url]", "ReturnValue.Field[crate::option::Option::Some(0)].Field[crate::async_impl::request::Request::url]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::Request>::url", "Argument[self].Field[crate::async_impl::request::Request::url]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::Request>::url_mut", "Argument[self].Field[crate::async_impl::request::Request::url]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::Request>::version", "Argument[self].Field[crate::async_impl::request::Request::version]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::Request>::version_mut", "Argument[self].Field[crate::async_impl::request::Request::version]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::RequestBuilder>::basic_auth", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::RequestBuilder>::bearer_auth", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::RequestBuilder>::body", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::RequestBuilder>::build", "Argument[self].Field[crate::async_impl::request::RequestBuilder::request]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::RequestBuilder>::build_split", "Argument[self].Field[crate::async_impl::request::RequestBuilder::client]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::RequestBuilder>::build_split", "Argument[self].Field[crate::async_impl::request::RequestBuilder::request]", "ReturnValue.Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::RequestBuilder>::fetch_mode_no_cors", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::RequestBuilder>::form", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::RequestBuilder>::from_parts", "Argument[0]", "ReturnValue.Field[crate::async_impl::request::RequestBuilder::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::RequestBuilder>::header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::RequestBuilder>::headers", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::RequestBuilder>::json", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::RequestBuilder>::new", "Argument[0]", "ReturnValue.Field[crate::async_impl::request::RequestBuilder::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::RequestBuilder>::new", "Argument[1]", "ReturnValue.Field[crate::async_impl::request::RequestBuilder::request]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::RequestBuilder>::query", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::RequestBuilder>::timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::RequestBuilder>::try_clone", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::request::RequestBuilder>::version", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::response::Response>::error_for_status", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::response::Response>::error_for_status_ref", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::async_impl::response::Response>::url", "Argument[self].Field[crate::async_impl::response::Response::url]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::background_threadpool::BackgroundProcessor>::new", "Argument[0]", "ReturnValue.Field[crate::background_threadpool::BackgroundProcessor::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::background_threadpool::BackgroundProcessorLayer as crate::Layer>::layer", "Argument[0]", "ReturnValue.Field[crate::background_threadpool::BackgroundProcessor::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::background_threadpool::BackgroundResponseFuture>::new", "Argument[0]", "ReturnValue.Field[crate::background_threadpool::BackgroundResponseFuture::rx]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::body::Body as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::blocking::body::Body::kind].Field[crate::blocking::body::Kind::Bytes(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::body::Body>::into_async", "Argument[self].Field[crate::blocking::body::Body::kind].Field[crate::blocking::body::Kind::Reader(1)]", "ReturnValue.Field[2]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::body::Body>::into_reader", "Argument[self].Field[crate::blocking::body::Body::kind].Field[crate::blocking::body::Kind::Reader(0)]", "ReturnValue.Field[crate::blocking::body::Reader::Reader(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::body::Body>::len", "Argument[self].Field[crate::blocking::body::Body::kind].Field[crate::blocking::body::Kind::Reader(1)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::body::Reader as crate::io::Read>::read", "Argument[self]", "Argument[0]", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::Client>::delete", "Argument[self].Reference", "ReturnValue.Field[crate::blocking::request::RequestBuilder::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::Client>::get", "Argument[self].Reference", "ReturnValue.Field[crate::blocking::request::RequestBuilder::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::Client>::head", "Argument[self].Reference", "ReturnValue.Field[crate::blocking::request::RequestBuilder::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::Client>::patch", "Argument[self].Reference", "ReturnValue.Field[crate::blocking::request::RequestBuilder::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::Client>::post", "Argument[self].Reference", "ReturnValue.Field[crate::blocking::request::RequestBuilder::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::Client>::put", "Argument[self].Reference", "ReturnValue.Field[crate::blocking::request::RequestBuilder::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::Client>::request", "Argument[self].Reference", "ReturnValue.Field[crate::blocking::request::RequestBuilder::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::blocking::client::ClientBuilder::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::add_crl", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::add_crls", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::add_root_certificate", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::brotli", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::connect_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::connection_verbose", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::connector_layer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::cookie_provider", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::cookie_store", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::danger_accept_invalid_certs", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::danger_accept_invalid_hostnames", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::default_headers", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::deflate", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::dns_resolver", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::gzip", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::hickory_dns", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::http09_responses", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::http1_allow_obsolete_multiline_headers_in_responses", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::http1_allow_spaces_after_header_name_in_responses", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::http1_ignore_invalid_headers_in_responses", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::http1_only", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::http1_title_case_headers", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::http2_adaptive_window", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::http2_initial_connection_window_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::http2_initial_stream_window_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::http2_max_frame_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::http2_max_header_list_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::http2_prior_knowledge", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::http3_prior_knowledge", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::https_only", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::identity", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::local_address", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::max_tls_version", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::min_tls_version", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::no_brotli", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::no_deflate", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::no_gzip", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::no_hickory_dns", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::no_proxy", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::no_trust_dns", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::no_zstd", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::pool_idle_timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::pool_max_idle_per_host", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::proxy", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::redirect", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::referer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::resolve", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::resolve_to_addrs", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::tcp_keepalive", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::tcp_nodelay", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::tls_built_in_native_certs", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::tls_built_in_root_certs", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::tls_built_in_webpki_certs", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::tls_info", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::tls_sni", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::trust_dns", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::use_native_tls", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::use_preconfigured_tls", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::use_rustls_tls", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::user_agent", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::ClientBuilder>::zstd", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::multipart::Form>::into_reader", "Argument[self]", "ReturnValue.Field[crate::blocking::multipart::Reader::form]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::multipart::Form>::reader", "Argument[self]", "ReturnValue.Field[crate::blocking::multipart::Reader::form]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::multipart::Part as crate::async_impl::multipart::PartProps>::metadata", "Argument[self].Field[crate::blocking::multipart::Part::meta]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::multipart::Part>::file_name", "Argument[self].Field[crate::blocking::multipart::Part::value]", "ReturnValue.Field[crate::blocking::multipart::Part::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::multipart::Part>::headers", "Argument[self].Field[crate::blocking::multipart::Part::value]", "ReturnValue.Field[crate::blocking::multipart::Part::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::multipart::Part>::mime_str", "Argument[self].Field[crate::blocking::multipart::Part::value]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::blocking::multipart::Part::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::Request>::body", "Argument[self].Field[crate::blocking::request::Request::body].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::Request>::body_mut", "Argument[self].Field[crate::blocking::request::Request::body]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::Request>::headers", "Argument[self].Field[crate::blocking::request::Request::inner].Field[crate::async_impl::request::Request::headers]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::Request>::headers_mut", "Argument[self].Field[crate::blocking::request::Request::inner].Field[crate::async_impl::request::Request::headers]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::Request>::into_async", "Argument[self].Field[crate::blocking::request::Request::inner]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::Request>::method", "Argument[self].Field[crate::blocking::request::Request::inner].Field[crate::async_impl::request::Request::method]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::Request>::method_mut", "Argument[self].Field[crate::blocking::request::Request::inner].Field[crate::async_impl::request::Request::method]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::Request>::new", "Argument[0]", "ReturnValue.Field[crate::blocking::request::Request::inner].Field[crate::async_impl::request::Request::method]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::Request>::new", "Argument[1]", "ReturnValue.Field[crate::blocking::request::Request::inner].Field[crate::async_impl::request::Request::url]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::Request>::timeout_mut", "Argument[self].Field[crate::blocking::request::Request::inner].Field[crate::async_impl::request::Request::timeout]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::Request>::url", "Argument[self].Field[crate::blocking::request::Request::inner].Field[crate::async_impl::request::Request::url]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::Request>::url_mut", "Argument[self].Field[crate::blocking::request::Request::inner].Field[crate::async_impl::request::Request::url]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::Request>::version", "Argument[self].Field[crate::blocking::request::Request::inner].Field[crate::async_impl::request::Request::version]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::Request>::version_mut", "Argument[self].Field[crate::blocking::request::Request::inner].Field[crate::async_impl::request::Request::version]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::basic_auth", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::bearer_auth", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::body", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::build", "Argument[self].Field[crate::blocking::request::RequestBuilder::request]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::build_split", "Argument[self].Field[crate::blocking::request::RequestBuilder::client]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::build_split", "Argument[self].Field[crate::blocking::request::RequestBuilder::request]", "ReturnValue.Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::form", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::from_parts", "Argument[0]", "ReturnValue.Field[crate::blocking::request::RequestBuilder::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::headers", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::json", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::multipart", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::new", "Argument[0]", "ReturnValue.Field[crate::blocking::request::RequestBuilder::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::new", "Argument[1]", "ReturnValue.Field[crate::blocking::request::RequestBuilder::request]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::query", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::send", "Argument[self].Field[crate::blocking::request::RequestBuilder::request].Field[crate::option::Option::Some(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::send", "Argument[self].Field[crate::blocking::request::RequestBuilder::request].Field[crate::result::Result::Ok(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::timeout", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::try_clone", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::request::RequestBuilder>::version", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::response::Response>::new", "Argument[0]", "ReturnValue.Field[crate::blocking::response::Response::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::response::Response>::new", "Argument[1]", "ReturnValue.Field[crate::blocking::response::Response::timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::response::Response>::new", "Argument[2]", "ReturnValue.Field[crate::blocking::response::Response::_thread_handle]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::response::Response>::url", "Argument[self].Field[crate::blocking::response::Response::inner].Field[crate::async_impl::response::Response::url]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::build", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::from_built_default_tls", "Argument[0]", "ReturnValue.Field[crate::connect::ConnectorBuilder::inner].Field[crate::connect::Inner::DefaultTls(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::from_built_default_tls", "Argument[1]", "ReturnValue.Field[crate::connect::ConnectorBuilder::inner].Field[crate::connect::Inner::DefaultTls(1)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::from_built_default_tls", "Argument[2]", "ReturnValue.Field[crate::connect::ConnectorBuilder::proxies]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::from_built_default_tls", "Argument[3]", "ReturnValue.Field[crate::connect::ConnectorBuilder::user_agent]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::from_built_default_tls", "Argument[5]", "ReturnValue.Field[crate::connect::ConnectorBuilder::nodelay]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::from_built_default_tls", "Argument[6]", "ReturnValue.Field[crate::connect::ConnectorBuilder::tls_info]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::new_default_tls", "Argument[2]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::connect::ConnectorBuilder::proxies]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::new_default_tls", "Argument[3]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::connect::ConnectorBuilder::user_agent]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::new_default_tls", "Argument[5]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::connect::ConnectorBuilder::nodelay]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::new_default_tls", "Argument[6]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::connect::ConnectorBuilder::tls_info]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::new_rustls_tls", "Argument[0]", "ReturnValue.Field[crate::connect::ConnectorBuilder::inner].Field[crate::connect::Inner::RustlsTls::http]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::new_rustls_tls", "Argument[2]", "ReturnValue.Field[crate::connect::ConnectorBuilder::proxies]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::new_rustls_tls", "Argument[3]", "ReturnValue.Field[crate::connect::ConnectorBuilder::user_agent]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::new_rustls_tls", "Argument[5]", "ReturnValue.Field[crate::connect::ConnectorBuilder::nodelay]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::new_rustls_tls", "Argument[6]", "ReturnValue.Field[crate::connect::ConnectorBuilder::tls_info]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::set_timeout", "Argument[0]", "Argument[self].Field[crate::connect::ConnectorBuilder::timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::set_verbose", "Argument[0]", "Argument[self].Field[crate::connect::ConnectorBuilder::verbose].Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorBuilder>::set_verbose", "Argument[0]", "Argument[self].Field[crate::connect::ConnectorBuilder::verbose].Field[crate::connect::verbose::Wrapper(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::dns::hickory::HickoryDnsSystemConfError as crate::error::Error>::source", "Argument[self].Field[0]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::dns::hickory::HickoryDnsSystemConfError as crate::error::Error>::source", "Argument[self].Field[crate::dns::hickory::HickoryDnsSystemConfError(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::dns::resolve::DnsResolverWithOverrides>::new", "Argument[0]", "ReturnValue.Field[crate::dns::resolve::DnsResolverWithOverrides::dns_resolver]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::dns::resolve::DynResolver>::new", "Argument[0]", "ReturnValue.Field[crate::dns::resolve::DynResolver::resolver]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::error::Error>::with_url", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::error::Error>::without_url", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::proxy::Proxy>::basic_auth", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::proxy::Proxy>::custom_http_auth", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::proxy::Proxy>::intercept", "Argument[self].Field[crate::proxy::Proxy::intercept].Field[crate::proxy::Intercept::All(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::proxy::Proxy>::intercept", "Argument[self].Field[crate::proxy::Proxy::intercept].Field[crate::proxy::Intercept::Http(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::proxy::Proxy>::intercept", "Argument[self].Field[crate::proxy::Proxy::intercept].Field[crate::proxy::Intercept::Https(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::proxy::Proxy>::no_proxy", "Argument[0]", "Argument[self].Field[crate::proxy::Proxy::no_proxy]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::proxy::Proxy>::no_proxy", "Argument[0]", "ReturnValue.Field[crate::proxy::Proxy::no_proxy]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::proxy::Proxy>::no_proxy", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::proxy::ProxyScheme as crate::proxy::IntoProxyScheme>::into_proxy_scheme", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::redirect::Attempt>::previous", "Argument[self].Field[crate::redirect::Attempt::previous]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::redirect::Attempt>::status", "Argument[self].Field[crate::redirect::Attempt::status]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::redirect::Attempt>::url", "Argument[self].Field[crate::redirect::Attempt::next]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::redirect::Policy>::limited", "Argument[0]", "ReturnValue.Field[crate::redirect::Policy::inner].Field[crate::redirect::PolicyKind::Limit(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::string::String as crate::into_url::IntoUrlSealed>::as_str", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::support::delay_layer::Delay>::new", "Argument[0]", "ReturnValue.Field[crate::support::delay_layer::Delay::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::support::delay_layer::Delay>::new", "Argument[1]", "ReturnValue.Field[crate::support::delay_layer::Delay::delay]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::support::delay_layer::DelayLayer as crate::Layer>::layer", "Argument[0]", "ReturnValue.Field[crate::support::delay_layer::Delay::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::support::delay_layer::DelayLayer as crate::Layer>::layer", "Argument[self].Field[crate::support::delay_layer::DelayLayer::delay]", "ReturnValue.Field[crate::support::delay_layer::Delay::delay]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::support::delay_layer::DelayLayer>::new", "Argument[0]", "ReturnValue.Field[crate::support::delay_layer::DelayLayer::delay]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::support::delay_layer::ResponseFuture>::new", "Argument[0]", "ReturnValue.Field[crate::support::delay_layer::ResponseFuture::response]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::support::delay_layer::ResponseFuture>::new", "Argument[1]", "ReturnValue.Field[crate::support::delay_layer::ResponseFuture::sleep]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::support::delay_server::Server>::addr", "Argument[self].Field[crate::support::delay_server::Server::addr]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::support::server::Http3>::with_addr", "Argument[0]", "Argument[self].Field[crate::support::server::Http3::addr].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::support::server::Http3>::with_addr", "Argument[0]", "ReturnValue.Field[crate::support::server::Http3::addr].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::support::server::Http3>::with_addr", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::support::server::Server>::addr", "Argument[self].Field[crate::support::server::Server::addr]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::tls::CertificateRevocationList>::as_rustls_crl", "Argument[self].Field[crate::tls::CertificateRevocationList::inner].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::tls::CertificateRevocationList>::as_rustls_crl", "Argument[self].Field[crate::tls::CertificateRevocationList::inner]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::tls::ClientCert as crate::clone::Clone>::clone", "Argument[self].Field[crate::tls::ClientCert::Pem::certs].Reference", "ReturnValue.Field[crate::tls::ClientCert::Pem::certs]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::tls::IgnoreHostname>::new", "Argument[0]", "ReturnValue.Field[crate::tls::IgnoreHostname::roots]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::tls::IgnoreHostname>::new", "Argument[1]", "ReturnValue.Field[crate::tls::IgnoreHostname::signature_algorithms]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::tls::TlsInfo>::peer_certificate", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "crate::async_impl::body::total_timeout", "Argument[0]", "ReturnValue.Field[crate::async_impl::body::TotalTimeoutBody::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "crate::async_impl::body::total_timeout", "Argument[1]", "ReturnValue.Field[crate::async_impl::body::TotalTimeoutBody::timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "crate::async_impl::body::with_read_timeout", "Argument[0]", "ReturnValue.Field[crate::async_impl::body::ReadTimeoutBody::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "crate::async_impl::body::with_read_timeout", "Argument[1]", "ReturnValue.Field[crate::async_impl::body::ReadTimeoutBody::timeout]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "crate::error::cast_to_internal_error", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: sinkModel
|
||||
@@ -16,8 +385,13 @@ extensions:
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::Client>::patch", "Argument[0]", "transmission", "df-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::Client>::post", "Argument[0]", "transmission", "df-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::client::Client>::put", "Argument[0]", "transmission", "df-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::Connector as crate::Service>::call", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::connect::ConnectorService as crate::Service>::call", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "crate::blocking::get", "Argument[0]", "transmission", "df-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "crate::blocking::wait::timeout", "Argument[1]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "crate::get", "Argument[0]", "transmission", "df-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: sourceModel
|
||||
data:
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::multipart::Form>::file", "ReturnValue", "file", "df-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::blocking::multipart::Part>::file", "ReturnValue", "file", "df-generated"]
|
||||
- ["repo:https://github.com/seanmonstar/reqwest:reqwest", "<crate::proxy::NoProxy>::from_env", "ReturnValue", "environment", "df-generated"]
|
||||
|
||||
@@ -0,0 +1,481 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<&str as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<_ as crate::catcher::handler::Handler>::handle", "Argument[0]", "Argument[self].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<_ as crate::catcher::handler::Handler>::handle", "Argument[1]", "Argument[self].Parameter[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<_ as crate::catcher::handler::Handler>::handle", "Argument[self].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<_ as crate::ext::StreamExt>::join", "Argument[0]", "ReturnValue.Field[crate::ext::Join::b]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<_ as crate::ext::StreamExt>::join", "Argument[self]", "ReturnValue.Field[crate::ext::Join::a]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<_ as crate::form::from_form::FromForm>::init", "Argument[0]", "ReturnValue.Field[crate::form::from_form_field::FromFieldContext::opts]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<_ as crate::form::from_form::FromForm>::push_value", "Argument[1].Field[crate::form::field::ValueField::value]", "Argument[0].Field[crate::form::from_form_field::FromFieldContext::field_value].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<_ as crate::route::handler::Handler>::handle", "Argument[0]", "Argument[self].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<_ as crate::route::handler::Handler>::handle", "Argument[1]", "Argument[self].Parameter[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<_ as crate::route::handler::Handler>::handle", "Argument[self].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<bool as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<char as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::Singleton as crate::fairing::Fairing>::info", "Argument[self].Field[0]", "ReturnValue.Field[crate::fairing::info_kind::Info::kind]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::Singleton as crate::fairing::Fairing>::info", "Argument[self].Field[crate::Singleton(0)]", "ReturnValue.Field[crate::fairing::info_kind::Info::kind]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::Uuid as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::Uuid as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::catcher::catcher::Catcher>::map_base", "Argument[self].Field[crate::catcher::catcher::Catcher::base]", "Argument[0].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::catcher::catcher::Catcher>::map_base", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::collections::btree::map::BTreeMap as crate::form::from_form::FromForm>::init", "Argument[0]", "ReturnValue.Field[crate::form::from_form::MapContext::opts]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::collections::btree::map::BTreeMap as crate::form::validate::Len>::len_into_u64", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::collections::hash::map::HashMap as crate::form::from_form::FromForm>::init", "Argument[0]", "ReturnValue.Field[crate::form::from_form::MapContext::opts]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::collections::hash::map::HashMap as crate::form::validate::Len>::len_into_u64", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::config::Config as crate::provider::Provider>::profile", "Argument[self].Field[crate::config::config::Config::profile].Reference", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::config::Config as crate::provider::Provider>::profile", "Argument[self].Field[crate::config::config::Config::profile]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::tls::MutualTls>::ca_certs", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::tls::MutualTls>::mandatory", "Argument[0]", "Argument[self].Field[crate::config::tls::MutualTls::mandatory]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::tls::MutualTls>::mandatory", "Argument[0]", "ReturnValue.Field[crate::config::tls::MutualTls::mandatory]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::tls::MutualTls>::mandatory", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::tls::TlsConfig>::certs", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::tls::TlsConfig>::key", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::tls::TlsConfig>::mutual", "Argument[self].Field[crate::config::tls::TlsConfig::mutual].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::tls::TlsConfig>::prefer_server_cipher_order", "Argument[self].Field[crate::config::tls::TlsConfig::prefer_server_cipher_order]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::tls::TlsConfig>::to_native_config", "Argument[self].Field[crate::config::tls::TlsConfig::prefer_server_cipher_order]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::tls::listener::Config::prefer_server_order]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::tls::TlsConfig>::with_ciphers", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::tls::TlsConfig>::with_mutual", "Argument[0]", "Argument[self].Field[crate::config::tls::TlsConfig::mutual].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::tls::TlsConfig>::with_mutual", "Argument[0]", "ReturnValue.Field[crate::config::tls::TlsConfig::mutual].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::tls::TlsConfig>::with_mutual", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::tls::TlsConfig>::with_preferred_server_cipher_order", "Argument[0]", "Argument[self].Field[crate::config::tls::TlsConfig::prefer_server_cipher_order]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::tls::TlsConfig>::with_preferred_server_cipher_order", "Argument[0]", "ReturnValue.Field[crate::config::tls::TlsConfig::prefer_server_cipher_order]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::tls::TlsConfig>::with_preferred_server_cipher_order", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::cookies::CookieJar as crate::clone::Clone>::clone", "Argument[self].Field[crate::cookies::CookieJar::config]", "ReturnValue.Field[crate::cookies::CookieJar::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::cookies::CookieJar as crate::clone::Clone>::clone", "Argument[self].Field[crate::cookies::CookieJar::jar].Reference", "ReturnValue.Field[crate::cookies::CookieJar::jar]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::cookies::CookieJar>::from", "Argument[0]", "ReturnValue.Field[crate::cookies::CookieJar::jar]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::cookies::CookieJar>::from", "Argument[1]", "ReturnValue.Field[crate::cookies::CookieJar::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::cookies::CookieJar>::new", "Argument[0]", "ReturnValue.Field[crate::cookies::CookieJar::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::capped::Capped as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::data::capped::Capped::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::capped::Capped as crate::form::from_form_field::FromFormField>::from_value", "Argument[0].Field[crate::form::field::ValueField::value]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::data::capped::Capped::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::capped::Capped as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::capped::Capped as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::data::capped::Capped::value]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::capped::Capped as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[crate::data::capped::Capped::value]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::capped::Capped>::complete", "Argument[0]", "ReturnValue.Field[crate::data::capped::Capped::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::capped::Capped>::into_inner", "Argument[self].Field[crate::data::capped::Capped::value]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::capped::Capped>::is_complete", "Argument[self].Field[crate::data::capped::Capped::n].Field[crate::data::capped::N::complete]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::capped::Capped>::map", "Argument[0].ReturnValue", "ReturnValue.Field[crate::data::capped::Capped::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::capped::Capped>::map", "Argument[self].Field[crate::data::capped::Capped::n]", "ReturnValue.Field[crate::data::capped::Capped::n]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::capped::Capped>::map", "Argument[self].Field[crate::data::capped::Capped::value]", "Argument[0].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::capped::Capped>::new", "Argument[0]", "ReturnValue.Field[crate::data::capped::Capped::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::capped::Capped>::new", "Argument[1]", "ReturnValue.Field[crate::data::capped::Capped::n]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::capped::N as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::data::capped::N::written]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::data::Data>::local", "Argument[0]", "ReturnValue.Field[crate::data::data::Data::buffer]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::data::Data>::peek", "Argument[self].Field[crate::data::data::Data::buffer].Element", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::data::Data>::peek_complete", "Argument[self].Field[crate::data::data::Data::is_complete]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::data_stream::StreamReader as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::data::data_stream::StreamReader::inner].Field[crate::data::data_stream::StreamKind::Body(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::data_stream::StreamReader as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::data::data_stream::StreamReader::inner].Field[crate::data::data_stream::StreamKind::Multipart(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::io_stream::IoStream as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::data::io_stream::IoStream::kind].Field[crate::data::io_stream::IoStreamKind::Upgraded(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::limits::Limits>::limit", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::error::Error as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::error::Error::kind]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::error::Error>::kind", "Argument[self].Field[crate::error::Error::kind]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::error::Error>::new", "Argument[0]", "ReturnValue.Field[crate::error::Error::kind]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::error::Error>::shutdown", "Argument[0]", "ReturnValue.Field[crate::error::Error::kind].Field[crate::error::ErrorKind::Shutdown(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::ext::CancellableIo>::io", "Argument[self].Field[crate::ext::CancellableIo::io].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::ext::CancellableIo>::new", "Argument[1]", "ReturnValue.Field[crate::ext::CancellableIo::io].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::ext::CancellableIo>::new", "Argument[2]", "ReturnValue.Field[crate::ext::CancellableIo::grace]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::ext::CancellableIo>::new", "Argument[3]", "ReturnValue.Field[crate::ext::CancellableIo::mercy]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::ext::CancellableListener>::new", "Argument[0]", "ReturnValue.Field[crate::ext::CancellableListener::trigger]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::ext::CancellableListener>::new", "Argument[1]", "ReturnValue.Field[crate::ext::CancellableListener::listener]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::ext::Chain>::get_ref", "Argument[self].Field[crate::ext::Chain::first]", "ReturnValue.Field[0].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::ext::Chain>::get_ref", "Argument[self].Field[crate::ext::Chain::second]", "ReturnValue.Field[1].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::ext::Chain>::new", "Argument[0]", "ReturnValue.Field[crate::ext::Chain::first]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::ext::Chain>::new", "Argument[1]", "ReturnValue.Field[crate::ext::Chain::second]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::ext::Join>::new", "Argument[0]", "ReturnValue.Field[crate::ext::Join::a]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::ext::Join>::new", "Argument[1]", "ReturnValue.Field[crate::ext::Join::b]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fairing::ad_hoc::AdHoc as crate::fairing::Fairing>::info", "Argument[self].Field[crate::fairing::ad_hoc::AdHoc::name]", "ReturnValue.Field[crate::fairing::info_kind::Info::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fairing::ad_hoc::AdHoc>::on_ignite", "Argument[0]", "ReturnValue.Field[crate::fairing::ad_hoc::AdHoc::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fairing::ad_hoc::AdHoc>::on_liftoff", "Argument[0]", "ReturnValue.Field[crate::fairing::ad_hoc::AdHoc::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fairing::ad_hoc::AdHoc>::on_request", "Argument[0]", "ReturnValue.Field[crate::fairing::ad_hoc::AdHoc::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fairing::ad_hoc::AdHoc>::on_response", "Argument[0]", "ReturnValue.Field[crate::fairing::ad_hoc::AdHoc::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fairing::ad_hoc::AdHoc>::on_shutdown", "Argument[0]", "ReturnValue.Field[crate::fairing::ad_hoc::AdHoc::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fairing::ad_hoc::AdHoc>::try_on_ignite", "Argument[0]", "ReturnValue.Field[crate::fairing::ad_hoc::AdHoc::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fairing::fairings::Fairings>::audit", "Argument[self].Field[crate::fairing::fairings::Fairings::failures]", "ReturnValue.Field[crate::result::Result::Err(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fairing::fairings::Fairings>::handle_ignite", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fairing::info_kind::Kind as crate::ops::bit::BitOr>::bitor", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fairing::info_kind::Kind as crate::ops::bit::BitOr>::bitor", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::context::Context>::push_error", "Argument[0].Field[crate::form::error::Error::kind].Field[crate::form::error::ErrorKind::Custom(0)]", "Argument[self].Field[crate::form::context::Context::status]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::context::Context>::status", "Argument[self].Field[crate::form::context::Context::status]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::context::Contextual as crate::form::from_form::FromForm>::finalize", "Argument[0].Field[1]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::form::context::Contextual::context]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::Error as crate::ext::IntoOwned>::into_owned", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::Error as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::form::error::Error::kind]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::Error>::set_entity", "Argument[0]", "Argument[self].Field[crate::form::error::Error::entity]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::Error>::status", "Argument[self].Field[crate::form::error::Error::kind].Field[crate::form::error::ErrorKind::Custom(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::Error>::with_entity", "Argument[0]", "Argument[self].Field[crate::form::error::Error::entity]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::Error>::with_entity", "Argument[0]", "ReturnValue.Field[crate::form::error::Error::entity]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::Error>::with_entity", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::Error>::with_name", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::Error>::with_value", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::ErrorKind as crate::convert::From>::from", "Argument[0].Field[0]", "ReturnValue.Field[crate::form::error::ErrorKind::Custom(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::ErrorKind as crate::convert::From>::from", "Argument[0].Field[0]", "ReturnValue.Field[crate::form::error::ErrorKind::InvalidLength::min]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::ErrorKind as crate::convert::From>::from", "Argument[0].Field[0]", "ReturnValue.Field[crate::form::error::ErrorKind::OutOfRange::start]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::ErrorKind as crate::convert::From>::from", "Argument[0].Field[1]", "ReturnValue.Field[crate::form::error::ErrorKind::Custom(1)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::ErrorKind as crate::convert::From>::from", "Argument[0].Field[1]", "ReturnValue.Field[crate::form::error::ErrorKind::InvalidLength::max]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::ErrorKind as crate::convert::From>::from", "Argument[0].Field[1]", "ReturnValue.Field[crate::form::error::ErrorKind::OutOfRange::end]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::ErrorKind as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::form::error::ErrorKind::Custom(1)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::ErrorKind as crate::convert::From>::from", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::ErrorKind as crate::ext::IntoOwned>::into_owned", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::Errors as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::form::error::Errors(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::Errors as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::Errors as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::form::error::Errors(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::Errors as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::Errors as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[crate::form::error::Errors(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::Errors>::with_name", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::error::Errors>::with_value", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::field::DataField>::shift", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::field::ValueField as crate::convert::From>::from", "Argument[0].Field[1]", "ReturnValue.Field[crate::form::field::ValueField::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::field::ValueField>::from_value", "Argument[0]", "ReturnValue.Field[crate::form::field::ValueField::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::field::ValueField>::shift", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::form::Form as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::form::form::Form(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::form::Form as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::form::Form as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::form::form::Form(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::form::Form as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::form::Form as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[crate::form::form::Form(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::form::Form>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::form::Form>::into_inner", "Argument[self].Field[crate::form::form::Form(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::lenient::Lenient as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::form::lenient::Lenient(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::lenient::Lenient as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::lenient::Lenient as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::form::lenient::Lenient(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::lenient::Lenient as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::lenient::Lenient as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[crate::form::lenient::Lenient(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::lenient::Lenient>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::lenient::Lenient>::into_inner", "Argument[self].Field[crate::form::lenient::Lenient(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::buf::NameBuf as crate::convert::From>::from", "Argument[0].Field[0].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::form::name::buf::NameBuf::left]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::buf::NameBuf as crate::convert::From>::from", "Argument[0].Field[0]", "ReturnValue.Field[crate::form::name::buf::NameBuf::left].Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::buf::NameBuf as crate::convert::From>::from", "Argument[0].Field[1]", "ReturnValue.Field[crate::form::name::buf::NameBuf::right]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::buf::NameBuf as crate::convert::From>::from", "Argument[0].Field[crate::form::name::view::NameView::name].Element", "ReturnValue.Field[crate::form::name::buf::NameBuf::left].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::buf::NameBuf as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::form::name::buf::NameBuf::left]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::key::Key as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::key::Key as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::form::name::key::Key(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::key::Key>::as_str", "Argument[self].Reference", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::name::Name as crate::convert::AsRef>::as_ref", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::name::Name as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::name::Name as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::form::name::name::Name(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::name::Name>::as_str", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::name::Name>::as_str", "Argument[self].Field[crate::form::name::name::Name(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::view::NameView as crate::borrow::Borrow>::borrow", "Argument[self].Field[crate::form::name::view::NameView::name].Element", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::view::NameView>::as_name", "Argument[self].Field[crate::form::name::view::NameView::name].Element", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::view::NameView>::parent", "Argument[self].Field[crate::form::name::view::NameView::name].Element", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::view::NameView>::shift", "Argument[self].Field[crate::form::name::view::NameView::end]", "Argument[self].Reference.Field[crate::form::name::view::NameView::start]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::view::NameView>::shift", "Argument[self].Field[crate::form::name::view::NameView::name]", "Argument[self].Reference.Field[crate::form::name::view::NameView::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::name::view::NameView>::source", "Argument[self].Field[crate::form::name::view::NameView::name]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::parser::RawStrParser as crate::iter::traits::iterator::Iterator>::next", "Argument[self].Field[crate::form::parser::RawStrParser::source].Element", "Argument[self].Field[crate::form::parser::RawStrParser::source].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::parser::RawStrParser>::new", "Argument[0]", "ReturnValue.Field[crate::form::parser::RawStrParser::buffer]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::parser::RawStrParser>::new", "Argument[1]", "ReturnValue.Field[crate::form::parser::RawStrParser::source]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::strict::Strict as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::form::strict::Strict(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::strict::Strict as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::strict::Strict as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::form::strict::Strict(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::strict::Strict as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::strict::Strict as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[crate::form::strict::Strict(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::strict::Strict>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::form::strict::Strict>::into_inner", "Argument[self].Field[crate::form::strict::Strict(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::named_file::NamedFile as crate::ops::deref::Deref>::deref", "Argument[self].Field[1]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::named_file::NamedFile as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::fs::named_file::NamedFile(1)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::named_file::NamedFile as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[1]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::named_file::NamedFile as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[crate::fs::named_file::NamedFile(1)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::named_file::NamedFile>::file", "Argument[self].Field[1]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::named_file::NamedFile>::file", "Argument[self].Field[crate::fs::named_file::NamedFile(1)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::named_file::NamedFile>::file_mut", "Argument[self].Field[1]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::named_file::NamedFile>::file_mut", "Argument[self].Field[crate::fs::named_file::NamedFile(1)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::named_file::NamedFile>::path", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::named_file::NamedFile>::take_file", "Argument[self].Field[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::named_file::NamedFile>::take_file", "Argument[self].Field[crate::fs::named_file::NamedFile(1)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::server::FileServer>::new", "Argument[1]", "ReturnValue.Field[crate::fs::server::FileServer::options]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::server::FileServer>::rank", "Argument[0]", "Argument[self].Field[crate::fs::server::FileServer::rank]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::server::FileServer>::rank", "Argument[0]", "ReturnValue.Field[crate::fs::server::FileServer::rank]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::server::FileServer>::rank", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::server::Options as crate::ops::bit::BitOr>::bitor", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::server::Options as crate::ops::bit::BitOr>::bitor", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::temp_file::TempFile as crate::form::validate::Len>::len", "Argument[self].Field[crate::fs::temp_file::TempFile::File::len].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::temp_file::TempFile as crate::form::validate::Len>::len_into_u64", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::temp_file::TempFile>::len", "Argument[self].Field[crate::fs::temp_file::TempFile::File::len].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::temp_file::TempFile>::open", "Argument[self].Field[crate::fs::temp_file::TempFile::Buffered::content].Reference", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::temp_file::TempFile>::path", "Argument[self].Field[crate::fs::temp_file::TempFile::File::path]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::fs::temp_file::TempFile>::raw_name", "Argument[self].Reference.Field[crate::fs::temp_file::TempFile::File::file_name]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::client::Client>::_new", "Argument[1]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::local::asynchronous::client::Client::tracked]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::client::Client>::_rocket", "Argument[self].Field[crate::local::asynchronous::client::Client::rocket]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::client::Client>::_with_raw_cookies", "Argument[0].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::client::Client>::_with_raw_cookies_mut", "Argument[0].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::request::LocalRequest as crate::clone::Clone>::clone", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::request::LocalRequest>::_body_mut", "Argument[self].Field[crate::local::asynchronous::request::LocalRequest::data]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::request::LocalRequest>::_request", "Argument[self].Field[crate::local::asynchronous::request::LocalRequest::request]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::request::LocalRequest>::_request_mut", "Argument[self].Field[crate::local::asynchronous::request::LocalRequest::request]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::request::LocalRequest>::body", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::request::LocalRequest>::cookie", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::request::LocalRequest>::cookies", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::request::LocalRequest>::header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::request::LocalRequest>::identity", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::request::LocalRequest>::new", "Argument[0]", "ReturnValue.Field[crate::local::asynchronous::request::LocalRequest::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::request::LocalRequest>::private_cookie", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::request::LocalRequest>::remote", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::response::LocalResponse>::_cookies", "Argument[self].Field[crate::local::asynchronous::response::LocalResponse::cookies]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::response::LocalResponse>::_response", "Argument[self].Field[crate::local::asynchronous::response::LocalResponse::response]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::asynchronous::response::LocalResponse>::new", "Argument[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::blocking::client::Client>::_test", "Argument[0].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::blocking::client::Client>::_with_raw_cookies", "Argument[0].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::blocking::client::Client>::inner", "Argument[self].Field[crate::local::blocking::client::Client::inner].Field[crate::option::Option::Some(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::blocking::request::LocalRequest>::body", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::blocking::request::LocalRequest>::cookie", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::blocking::request::LocalRequest>::cookies", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::blocking::request::LocalRequest>::header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::blocking::request::LocalRequest>::identity", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::blocking::request::LocalRequest>::new", "Argument[0]", "ReturnValue.Field[crate::local::blocking::request::LocalRequest::client]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::blocking::request::LocalRequest>::private_cookie", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::blocking::request::LocalRequest>::remote", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::local::blocking::response::LocalResponse>::_cookies", "Argument[self].Field[crate::local::blocking::response::LocalResponse::inner].Field[crate::local::asynchronous::response::LocalResponse::cookies]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::net::ip_addr::IpAddr as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::net::ip_addr::IpAddr as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::net::ip_addr::Ipv4Addr as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::net::ip_addr::Ipv4Addr as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::net::ip_addr::Ipv6Addr as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::net::ip_addr::Ipv6Addr as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::net::socket_addr::SocketAddr as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::net::socket_addr::SocketAddr as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::net::socket_addr::SocketAddrV4 as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::net::socket_addr::SocketAddrV4 as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::net::socket_addr::SocketAddrV6 as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::net::socket_addr::SocketAddrV6 as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::num::nonzero::NonZero as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::num::nonzero::NonZero as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::option::Option as crate::outcome::IntoOutcome>::or_error", "Argument[0]", "ReturnValue.Field[crate::outcome::Outcome::Error(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::option::Option as crate::outcome::IntoOutcome>::or_error", "Argument[self].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::outcome::Outcome::Success(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::option::Option as crate::outcome::IntoOutcome>::or_forward", "Argument[0]", "ReturnValue.Field[crate::outcome::Outcome::Forward(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::option::Option as crate::outcome::IntoOutcome>::or_forward", "Argument[self].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::outcome::Outcome::Success(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::and_then", "Argument[0].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::and_then", "Argument[self].Field[crate::outcome::Outcome::Error(0)]", "ReturnValue.Field[crate::outcome::Outcome::Error(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::and_then", "Argument[self].Field[crate::outcome::Outcome::Forward(0)]", "ReturnValue.Field[crate::outcome::Outcome::Forward(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::and_then", "Argument[self].Field[crate::outcome::Outcome::Success(0)]", "Argument[0].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::as_mut", "Argument[self].Reference.Field[crate::outcome::Outcome::Error(0)]", "ReturnValue.Field[crate::outcome::Outcome::Error(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::as_mut", "Argument[self].Reference.Field[crate::outcome::Outcome::Forward(0)]", "ReturnValue.Field[crate::outcome::Outcome::Forward(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::as_mut", "Argument[self].Reference.Field[crate::outcome::Outcome::Success(0)]", "ReturnValue.Field[crate::outcome::Outcome::Success(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::as_ref", "Argument[self].Reference.Field[crate::outcome::Outcome::Error(0)]", "ReturnValue.Field[crate::outcome::Outcome::Error(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::as_ref", "Argument[self].Reference.Field[crate::outcome::Outcome::Forward(0)]", "ReturnValue.Field[crate::outcome::Outcome::Forward(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::as_ref", "Argument[self].Reference.Field[crate::outcome::Outcome::Success(0)]", "ReturnValue.Field[crate::outcome::Outcome::Success(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::error_then", "Argument[0].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::error_then", "Argument[self].Field[crate::outcome::Outcome::Error(0)]", "Argument[0].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::error_then", "Argument[self].Field[crate::outcome::Outcome::Forward(0)]", "ReturnValue.Field[crate::outcome::Outcome::Forward(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::error_then", "Argument[self].Field[crate::outcome::Outcome::Success(0)]", "ReturnValue.Field[crate::outcome::Outcome::Success(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::expect", "Argument[self].Field[crate::outcome::Outcome::Success(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::failed", "Argument[self].Field[crate::outcome::Outcome::Error(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::forward_then", "Argument[0].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::forward_then", "Argument[self].Field[crate::outcome::Outcome::Error(0)]", "ReturnValue.Field[crate::outcome::Outcome::Error(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::forward_then", "Argument[self].Field[crate::outcome::Outcome::Forward(0)]", "Argument[0].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::forward_then", "Argument[self].Field[crate::outcome::Outcome::Success(0)]", "ReturnValue.Field[crate::outcome::Outcome::Success(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::forwarded", "Argument[self].Field[crate::outcome::Outcome::Forward(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::log_display", "Argument[self]", "ReturnValue.Field[crate::outcome::Display(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::map", "Argument[0].ReturnValue", "ReturnValue.Field[crate::outcome::Outcome::Success(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::map", "Argument[self].Field[crate::outcome::Outcome::Error(0)]", "ReturnValue.Field[crate::outcome::Outcome::Error(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::map", "Argument[self].Field[crate::outcome::Outcome::Forward(0)]", "ReturnValue.Field[crate::outcome::Outcome::Forward(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::map", "Argument[self].Field[crate::outcome::Outcome::Success(0)]", "Argument[0].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::map_error", "Argument[0].ReturnValue", "ReturnValue.Field[crate::outcome::Outcome::Error(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::map_error", "Argument[self].Field[crate::outcome::Outcome::Error(0)]", "Argument[0].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::map_error", "Argument[self].Field[crate::outcome::Outcome::Forward(0)]", "ReturnValue.Field[crate::outcome::Outcome::Forward(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::map_error", "Argument[self].Field[crate::outcome::Outcome::Success(0)]", "ReturnValue.Field[crate::outcome::Outcome::Success(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::map_forward", "Argument[0].ReturnValue", "ReturnValue.Field[crate::outcome::Outcome::Forward(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::map_forward", "Argument[self].Field[crate::outcome::Outcome::Error(0)]", "ReturnValue.Field[crate::outcome::Outcome::Error(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::map_forward", "Argument[self].Field[crate::outcome::Outcome::Forward(0)]", "Argument[0].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::map_forward", "Argument[self].Field[crate::outcome::Outcome::Success(0)]", "ReturnValue.Field[crate::outcome::Outcome::Success(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::ok_map_error", "Argument[0].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::ok_map_error", "Argument[self].Field[crate::outcome::Outcome::Error(0)]", "Argument[0].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::ok_map_error", "Argument[self].Field[crate::outcome::Outcome::Forward(0)]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::ok_map_error", "Argument[self].Field[crate::outcome::Outcome::Success(0)]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::ok_map_forward", "Argument[0].ReturnValue", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::ok_map_forward", "Argument[self].Field[crate::outcome::Outcome::Error(0)]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::ok_map_forward", "Argument[self].Field[crate::outcome::Outcome::Forward(0)]", "Argument[0].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::ok_map_forward", "Argument[self].Field[crate::outcome::Outcome::Success(0)]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::succeeded", "Argument[self].Field[crate::outcome::Outcome::Success(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::success_or", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::success_or", "Argument[self].Field[crate::outcome::Outcome::Success(0)]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::success_or_else", "Argument[0].ReturnValue", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::success_or_else", "Argument[self].Field[crate::outcome::Outcome::Success(0)]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::unwrap", "Argument[self].Field[crate::outcome::Outcome::Success(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::phase::Building as crate::phase::Stateful>::as_state_ref", "Argument[self]", "ReturnValue.Field[crate::phase::StateRef::Build(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::phase::Building as crate::phase::Stateful>::into_state", "Argument[self]", "ReturnValue.Field[crate::phase::State::Build(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::phase::Igniting as crate::phase::Stateful>::as_state_ref", "Argument[self]", "ReturnValue.Field[crate::phase::StateRef::Ignite(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::phase::Igniting as crate::phase::Stateful>::into_state", "Argument[self]", "ReturnValue.Field[crate::phase::State::Ignite(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::phase::Orbiting as crate::phase::Stateful>::as_state_ref", "Argument[self]", "ReturnValue.Field[crate::phase::StateRef::Orbit(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::phase::Orbiting as crate::phase::Stateful>::into_state", "Argument[self]", "ReturnValue.Field[crate::phase::State::Orbit(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::request::request::Request>::client_ip", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::request::request::Request>::clone", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::request::request::Request>::cookies", "Argument[self].Field[crate::request::request::Request::state].Field[crate::request::request::RequestState::cookies]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::request::request::Request>::cookies_mut", "Argument[self].Field[crate::request::request::Request::state].Field[crate::request::request::RequestState::cookies]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::request::request::Request>::headers", "Argument[self].Field[crate::request::request::Request::headers]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::request::request::Request>::new", "Argument[0]", "ReturnValue.Field[crate::request::request::Request::state].Field[crate::request::request::RequestState::rocket]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::request::request::Request>::new", "Argument[2]", "ReturnValue.Field[crate::request::request::Request::uri]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::request::request::Request>::remote", "Argument[self].Field[crate::request::request::Request::connection].Field[crate::request::request::ConnectionMeta::remote]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::request::request::Request>::rocket", "Argument[self].Field[crate::request::request::Request::state].Field[crate::request::request::RequestState::rocket]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::request::request::Request>::set_uri", "Argument[0]", "Argument[self].Field[crate::request::request::Request::uri]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::request::request::Request>::uri", "Argument[self].Field[crate::request::request::Request::uri]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::body::Body>::max_chunk_size", "Argument[self].Field[crate::response::body::Body::max_chunk]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::body::Body>::preset_size", "Argument[self].Field[crate::response::body::Body::size]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::body::Body>::set_max_chunk_size", "Argument[0]", "Argument[self].Field[crate::response::body::Body::max_chunk]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::body::Body>::take", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::body::Body>::with_sized", "Argument[1]", "ReturnValue.Field[crate::response::body::Body::size]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::debug::Debug as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::response::debug::Debug(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::flash::Flash>::error", "Argument[0]", "ReturnValue.Field[crate::response::flash::Flash::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::flash::Flash>::into_inner", "Argument[self].Field[crate::response::flash::Flash::kind]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::flash::Flash>::into_inner", "Argument[self].Field[crate::response::flash::Flash::message]", "ReturnValue.Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::flash::Flash>::kind", "Argument[self].Field[crate::response::flash::Flash::kind]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::flash::Flash>::message", "Argument[self].Field[crate::response::flash::Flash::message]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::flash::Flash>::new", "Argument[0]", "ReturnValue.Field[crate::response::flash::Flash::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::flash::Flash>::success", "Argument[0]", "ReturnValue.Field[crate::response::flash::Flash::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::flash::Flash>::warning", "Argument[0]", "ReturnValue.Field[crate::response::flash::Flash::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Builder>::finalize", "Argument[self].Field[crate::response::response::Builder::response]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Builder>::header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Builder>::header_adjoin", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Builder>::join", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Builder>::max_chunk_size", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Builder>::merge", "Argument[0].Field[crate::response::response::Response::body]", "Argument[self].Field[crate::response::response::Builder::response].Field[crate::response::response::Response::body]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Builder>::merge", "Argument[0].Field[crate::response::response::Response::body]", "ReturnValue.Field[crate::response::response::Builder::response].Field[crate::response::response::Response::body]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Builder>::merge", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Builder>::new", "Argument[0]", "ReturnValue.Field[crate::response::response::Builder::response]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Builder>::ok", "Argument[self].Field[crate::response::response::Builder::response]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Builder>::raw_header", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Builder>::raw_header_adjoin", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Builder>::sized_body", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Builder>::status", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Builder>::streamed_body", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Builder>::upgrade", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Response>::body", "Argument[self].Field[crate::response::response::Response::body]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Response>::body_mut", "Argument[self].Field[crate::response::response::Response::body]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Response>::build_from", "Argument[0]", "ReturnValue.Field[crate::response::response::Builder::response]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Response>::headers", "Argument[self].Field[crate::response::response::Response::headers]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Response>::join", "Argument[0].Field[crate::response::response::Response::body]", "Argument[self].Field[crate::response::response::Response::body]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Response>::join", "Argument[0].Field[crate::response::response::Response::status]", "Argument[self].Field[crate::response::response::Response::status]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Response>::merge", "Argument[0].Field[crate::response::response::Response::body]", "Argument[self].Field[crate::response::response::Response::body]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Response>::set_status", "Argument[0]", "Argument[self].Field[crate::response::response::Response::status].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::response::Response>::status", "Argument[self].Field[crate::response::response::Response::status].Field[crate::option::Option::Some(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::status::Created>::body", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::status::Created>::tagged_body", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::stream::bytes::ByteStream as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::response::stream::bytes::ByteStream(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::stream::one::One as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::response::stream::one::One(0)].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::stream::one::One as crate::stream::Stream>::poll_next", "Argument[self].Field[0].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::stream::reader::ReaderStream as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::response::stream::reader::ReaderStream::stream]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::stream::sse::Event>::event", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::stream::sse::Event>::id", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::stream::sse::Event>::retry", "Argument[0]", "ReturnValue.Field[crate::response::stream::sse::Event::retry].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::stream::sse::Event>::with_comment", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::stream::sse::Event>::with_data", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::stream::sse::Event>::with_retry", "Argument[0]", "Argument[self].Field[crate::response::stream::sse::Event::retry].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::stream::sse::Event>::with_retry", "Argument[0]", "ReturnValue.Field[crate::response::stream::sse::Event::retry].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::stream::sse::Event>::with_retry", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::stream::sse::EventStream as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::response::stream::sse::EventStream::stream]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::stream::sse::EventStream>::heartbeat", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::stream::text::TextStream as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::response::stream::text::TextStream(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::result::Result as crate::outcome::IntoOutcome>::or_error", "Argument[0]", "ReturnValue.Field[crate::outcome::Outcome::Error(0)].Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::result::Result as crate::outcome::IntoOutcome>::or_error", "Argument[self].Field[crate::result::Result::Err(0)]", "ReturnValue.Field[crate::outcome::Outcome::Error(0)].Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::result::Result as crate::outcome::IntoOutcome>::or_error", "Argument[self].Field[crate::result::Result::Err(0)]", "ReturnValue.Field[crate::outcome::Outcome::Error(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::result::Result as crate::outcome::IntoOutcome>::or_error", "Argument[self].Field[crate::result::Result::Ok(0)]", "ReturnValue.Field[crate::outcome::Outcome::Success(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::result::Result as crate::outcome::IntoOutcome>::or_forward", "Argument[0].Field[0]", "ReturnValue.Field[crate::outcome::Outcome::Forward(0)].Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::result::Result as crate::outcome::IntoOutcome>::or_forward", "Argument[0].Field[1]", "ReturnValue.Field[crate::outcome::Outcome::Forward(0)].Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::result::Result as crate::outcome::IntoOutcome>::or_forward", "Argument[0]", "ReturnValue.Field[crate::outcome::Outcome::Forward(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::result::Result as crate::outcome::IntoOutcome>::or_forward", "Argument[self].Field[crate::result::Result::Ok(0)]", "ReturnValue.Field[crate::outcome::Outcome::Success(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::rkt::Rocket as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::rkt::Rocket(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::rkt::Rocket as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::rkt::Rocket as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::rkt::Rocket(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::rkt::Rocket as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::rkt::Rocket as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[crate::rkt::Rocket(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::rkt::Rocket>::attach", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::rkt::Rocket>::configure", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::rkt::Rocket>::default_tcp_http_server", "Argument[self]", "Argument[0].Parameter[0].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::rkt::Rocket>::manage", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::route::route::Route as crate::convert::From>::from", "Argument[0].Field[crate::route::route::StaticInfo::format]", "ReturnValue.Field[crate::route::route::Route::format]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::route::route::Route as crate::convert::From>::from", "Argument[0].Field[crate::route::route::StaticInfo::method]", "ReturnValue.Field[crate::route::route::Route::method]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::route::route::Route as crate::convert::From>::from", "Argument[0].Field[crate::route::route::StaticInfo::rank].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::route::route::Route::rank]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::route::route::Route>::map_base", "Argument[self].Field[crate::route::route::Route::uri].Field[crate::route::uri::RouteUri::base]", "Argument[0].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::route::route::Route>::map_base", "Argument[self]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::route::route::Route>::new", "Argument[0]", "ReturnValue.Field[crate::route::route::Route::method]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::route::route::Route>::ranked", "Argument[1]", "ReturnValue.Field[crate::route::route::Route::method]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::route::segment::Segment>::from", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::route::uri::RouteUri as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::route::uri::RouteUri::origin]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::route::uri::RouteUri>::as_str", "Argument[self].Field[crate::route::uri::RouteUri::source]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::route::uri::RouteUri>::default_rank", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::route::uri::RouteUri>::query", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::serde::json::Json as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::serde::json::Json(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::serde::json::Json as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::serde::json::Json as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::serde::json::Json(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::serde::json::Json as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::serde::json::Json as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[crate::serde::json::Json(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::serde::json::Json as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue.Field[crate::serde::json::Json(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::serde::json::Json as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::serde::json::Json>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::serde::json::Json>::into_inner", "Argument[self].Field[crate::serde::json::Json(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::serde::msgpack::MsgPack as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::serde::msgpack::MsgPack(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::serde::msgpack::MsgPack as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::serde::msgpack::MsgPack as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::serde::msgpack::MsgPack(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::serde::msgpack::MsgPack as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::serde::msgpack::MsgPack as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[crate::serde::msgpack::MsgPack(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::serde::msgpack::MsgPack>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::serde::msgpack::MsgPack>::into_inner", "Argument[self].Field[crate::serde::msgpack::MsgPack(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::shield::policy::Permission>::allow", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::shield::policy::Permission>::block", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::shield::shield::Shield>::disable", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::shield::shield::Shield>::enable", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::state::State as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::state::State as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::state::State(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::state::State>::inner", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::state::State>::inner", "Argument[self].Field[crate::state::State(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::status::Status as crate::response::responder::Responder>::respond_to", "Argument[self]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::string::String as crate::form::validate::Len>::len_into_u64", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::string::String as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::trip_wire::TripWire as crate::clone::Clone>::clone", "Argument[self].Field[crate::trip_wire::TripWire::state].Reference", "ReturnValue.Field[crate::trip_wire::TripWire::state]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::trip_wire::TripWire as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::trip_wire::TripWire::state]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::uri::segments::Segments as crate::request::from_param::FromSegments>::from_segments", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::vec::Vec as crate::form::from_form::FromForm>::finalize", "Argument[0].Field[crate::form::from_form::VecContext::errors]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::vec::Vec as crate::form::from_form::FromForm>::finalize", "Argument[0].Field[crate::form::from_form::VecContext::items]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::vec::Vec as crate::form::from_form::FromForm>::init", "Argument[0]", "ReturnValue.Field[crate::form::from_form::VecContext::opts]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::vec::Vec as crate::form::validate::Len>::len_into_u64", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<f32 as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<f32 as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<f64 as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<f64 as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<i128 as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<i128 as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<i16 as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<i16 as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<i32 as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<i32 as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<i64 as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<i64 as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<i8 as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<i8 as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<isize as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<isize as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<str as crate::form::validate::Len>::len_into_u64", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<u128 as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<u128 as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<u16 as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<u16 as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<u32 as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<u32 as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<u64 as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<u64 as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<u8 as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<u8 as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<usize as crate::form::from_form_field::FromFormField>::from_value", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<usize as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "crate::catcher::catcher::default_handler", "Argument[0]", "ReturnValue.Field[crate::response::response::Response::status].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "crate::form::validate::try_with", "Argument[0]", "Argument[1].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "crate::form::validate::with", "Argument[0]", "Argument[1].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "crate::prepend", "Argument[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: sinkModel
|
||||
data:
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::shutdown::Shutdown>::signal_stream", "Argument[self]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::data::data_stream::StreamReader as crate::io::async_read::AsyncRead>::poll_read", "Argument[1]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::outcome::Outcome>::expect", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::response::stream::raw_sse::RawLinedEvent as crate::io::async_read::AsyncRead>::poll_read", "Argument[1]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::rkt::Rocket>::dispatch", "Argument[1]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::rkt::Rocket>::handle_error", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::route::route::Route>::matches", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::status::Status as crate::response::responder::Responder>::respond_to", "Argument[self]", "log-injection", "df-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: sourceModel
|
||||
data:
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket", "<crate::config::tls::TlsConfig>::to_native_config", "ReturnValue", "file", "df-generated"]
|
||||
@@ -0,0 +1,62 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::Ident as crate::syn_ext::IdentExt>::with_span", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::User as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Dynamic as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::attribute::param::Dynamic::name]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Dynamic>::parse", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)].Field[crate::attribute::param::parse::Error::segment]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Dynamic>::parse", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)].Field[crate::attribute::param::parse::Error::source]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Dynamic>::parse", "Argument[1]", "ReturnValue.Field[crate::attribute::param::Parameter::Static(0)].Field[crate::name::Name::span]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Dynamic>::parse", "Argument[1]", "ReturnValue.Field[crate::result::Result::Err(0)].Field[crate::attribute::param::parse::Error::source_span]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Dynamic>::parse", "Argument[1]", "ReturnValue.Field[crate::result::Result::Err(0)].Field[crate::attribute::param::parse::Error::span]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Guard as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::attribute::param::Guard::source]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Guard>::from", "Argument[0]", "ReturnValue.Field[crate::attribute::param::Guard::source]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Guard>::from", "Argument[1]", "ReturnValue.Field[crate::attribute::param::Guard::fn_ident]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Guard>::from", "Argument[2]", "ReturnValue.Field[crate::attribute::param::Guard::ty]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Parameter>::dynamic", "Argument[self].Field[crate::attribute::param::Parameter::Dynamic(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Parameter>::dynamic_mut", "Argument[self].Field[crate::attribute::param::Parameter::Dynamic(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Parameter>::guard", "Argument[self].Field[crate::attribute::param::Parameter::Guard(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Parameter>::ignored", "Argument[self].Field[crate::attribute::param::Parameter::Ignored(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Parameter>::parse", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)].Field[crate::attribute::param::parse::Error::segment]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Parameter>::parse", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)].Field[crate::attribute::param::parse::Error::source]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Parameter>::parse", "Argument[1]", "ReturnValue.Field[crate::result::Result::Err(0)].Field[crate::attribute::param::parse::Error::source_span]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Parameter>::parse", "Argument[1]", "ReturnValue.Field[crate::result::Result::Err(0)].Field[crate::attribute::param::parse::Error::span]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Parameter>::static", "Argument[self].Field[crate::attribute::param::Parameter::Static(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::Parameter>::take_dynamic", "Argument[self].Field[crate::attribute::param::Parameter::Dynamic(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::parse::Error>::new", "Argument[0]", "ReturnValue.Field[crate::attribute::param::parse::Error::segment]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::parse::Error>::new", "Argument[0]", "ReturnValue.Field[crate::attribute::param::parse::Error::source]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::parse::Error>::new", "Argument[1]", "ReturnValue.Field[crate::attribute::param::parse::Error::source_span]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::parse::Error>::new", "Argument[1]", "ReturnValue.Field[crate::attribute::param::parse::Error::span]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::parse::Error>::new", "Argument[2]", "ReturnValue.Field[crate::attribute::param::parse::Error::kind]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::parse::Error>::source", "Argument[0]", "Argument[self].Field[crate::attribute::param::parse::Error::source]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::parse::Error>::source", "Argument[0]", "ReturnValue.Field[crate::attribute::param::parse::Error::source]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::parse::Error>::source", "Argument[1]", "Argument[self].Field[crate::attribute::param::parse::Error::source_span]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::parse::Error>::source", "Argument[1]", "ReturnValue.Field[crate::attribute::param::parse::Error::source_span]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::param::parse::Error>::source", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::route::parse::Route>::from", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::attribute::route::parse::Route::attr]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::route::parse::Route>::from", "Argument[1]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::attribute::route::parse::Route::handler]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::route::parse::Route>::upgrade_dynamic", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::attribute::param::Guard::source]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::route::parse::Route>::upgrade_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::attribute::route::parse::RouteUri as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::attribute::route::parse::RouteUri::origin]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::bang::uri_parsing::ArgExpr>::as_expr", "Argument[self].Field[crate::bang::uri_parsing::ArgExpr::Expr(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::bang::uri_parsing::ArgExpr>::unwrap_expr", "Argument[self].Field[crate::bang::uri_parsing::ArgExpr::Expr(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::bang::uri_parsing::UriLit as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::bang::uri_parsing::UriLit as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::bang::uri_parsing::UriLit(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::derive::form_field::FieldName as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::derive::form_field::FieldName::Cased(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::derive::form_field::FieldName as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::derive::form_field::FieldName::Uncased(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::exports::StaticPath>::respanned", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::name::Name as crate::convert::AsRef>::as_ref", "Argument[self].Field[crate::name::Name::value]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::name::Name as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::name::Name::value]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::name::Name>::as_str", "Argument[self].Field[crate::name::Name::value]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::name::Name>::new", "Argument[1]", "ReturnValue.Field[crate::name::Name::span]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::name::Name>::span", "Argument[self].Field[crate::name::Name::span]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::proc_macro_ext::Diagnostics as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::proc_macro_ext::Diagnostics(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::proc_macro_ext::Diagnostics>::head_err_or", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::proc_macro_ext::StringLit as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::proc_macro_ext::StringLit as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::proc_macro_ext::StringLit(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::syn_ext::Child as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::syn_ext::Child::ty]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "<crate::ty::ReturnType as crate::syn_ext::ReturnTypeExt>::ty", "Argument[self]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_codegen", "crate::derive::form_field::first_duplicate", "Argument[0].Element", "Argument[1].Parameter[0].Reference", "value", "dfc-generated"]
|
||||
@@ -0,0 +1,215 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<&[u8] as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<&crate::path::Path as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<&str as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<_ as crate::ext::IntoCollection>::mapped", "Argument[self]", "Argument[0].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<bool as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::Uuid as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::borrow::Cow as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::collections::btree::map::BTreeMap as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::collections::hash::map::HashMap as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::date::Date as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::accept::QMediaType as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::header::accept::QMediaType(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::accept::QMediaType as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::accept::QMediaType as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::header::accept::QMediaType(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::accept::QMediaType>::media_type", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::accept::QMediaType>::media_type", "Argument[self].Field[crate::header::accept::QMediaType(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::accept::QMediaType>::weight", "Argument[self].Field[1]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::accept::QMediaType>::weight", "Argument[self].Field[crate::header::accept::QMediaType(1)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::accept::QMediaType>::weight_or", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::accept::QMediaType>::weight_or", "Argument[self].Field[1].Field[crate::option::Option::Some(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::accept::QMediaType>::weight_or", "Argument[self].Field[crate::header::accept::QMediaType(1)].Field[crate::option::Option::Some(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::content_type::ContentType as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::header::content_type::ContentType(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::content_type::ContentType as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::content_type::ContentType as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::header::content_type::ContentType(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::content_type::ContentType>::media_type", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::content_type::ContentType>::media_type", "Argument[self].Field[crate::header::content_type::ContentType(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::content_type::ContentType>::with_params", "Argument[self].Field[0]", "ReturnValue.Field[crate::header::content_type::ContentType(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::content_type::ContentType>::with_params", "Argument[self].Field[crate::header::content_type::ContentType(0)]", "ReturnValue.Field[crate::header::content_type::ContentType(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::header::Header>::name", "Argument[self].Field[crate::header::header::Header::name]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::header::Header>::value", "Argument[self].Field[crate::header::header::Header::value]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::media_type::MediaType>::const_new", "Argument[2]", "ReturnValue.Field[crate::header::media_type::MediaType::params].Field[crate::header::media_type::MediaParams::Static(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::media_type::MediaType>::known_source", "Argument[self].Field[crate::header::media_type::MediaType::source].Field[crate::header::media_type::Source::Known(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::media_type::MediaType>::new_known", "Argument[0]", "ReturnValue.Field[crate::header::media_type::MediaType::source].Field[crate::header::media_type::Source::Known(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::media_type::MediaType>::new_known", "Argument[3]", "ReturnValue.Field[crate::header::media_type::MediaType::params].Field[crate::header::media_type::MediaParams::Static(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::media_type::MediaType>::with_params", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::header::media_type::Source as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::header::media_type::Source::Custom(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::listener::Incoming>::new", "Argument[0]", "ReturnValue.Field[crate::listener::Incoming::listener]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::listener::Incoming>::nodelay", "Argument[0]", "Argument[self].Field[crate::listener::Incoming::nodelay]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::listener::Incoming>::nodelay", "Argument[0]", "ReturnValue.Field[crate::listener::Incoming::nodelay]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::listener::Incoming>::nodelay", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::listener::Incoming>::sleep_on_errors", "Argument[0]", "Argument[self].Field[crate::listener::Incoming::sleep_on_errors]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::listener::Incoming>::sleep_on_errors", "Argument[0]", "ReturnValue.Field[crate::listener::Incoming::sleep_on_errors]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::listener::Incoming>::sleep_on_errors", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::net::ip_addr::IpAddr as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::net::ip_addr::Ipv4Addr as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::net::ip_addr::Ipv6Addr as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::net::socket_addr::SocketAddr as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::net::socket_addr::SocketAddrV4 as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::net::socket_addr::SocketAddrV6 as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::num::nonzero::NonZero as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::option::Option as crate::ext::IntoOwned>::into_owned", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::option::Option as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed as crate::clone::Clone>::clone", "Argument[self].Reference.Field[crate::parse::indexed::Indexed::Concrete(0)]", "ReturnValue.Field[crate::parse::indexed::Indexed::Concrete(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed as crate::clone::Clone>::clone", "Argument[self].Reference.Field[crate::parse::indexed::Indexed::Indexed(0)]", "ReturnValue.Field[crate::parse::indexed::Indexed::Indexed(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed as crate::clone::Clone>::clone", "Argument[self].Reference.Field[crate::parse::indexed::Indexed::Indexed(1)]", "ReturnValue.Field[crate::parse::indexed::Indexed::Indexed(1)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::parse::indexed::Indexed::Concrete(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::parse::indexed::Indexed::Indexed(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::parse::indexed::Indexed::Indexed(1)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed as crate::ext::IntoOwned>::into_owned", "Argument[self].Field[crate::parse::indexed::Indexed::Indexed(0)]", "ReturnValue.Field[crate::parse::indexed::Indexed::Indexed(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed as crate::ext::IntoOwned>::into_owned", "Argument[self].Field[crate::parse::indexed::Indexed::Indexed(1)]", "ReturnValue.Field[crate::parse::indexed::Indexed::Indexed(1)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed as crate::input::length::Length>::len", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed as crate::ops::arith::Add>::add", "Argument[0].Field[crate::parse::indexed::Indexed::Indexed(1)]", "ReturnValue.Field[crate::parse::indexed::Indexed::Indexed(1)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed as crate::ops::arith::Add>::add", "Argument[self].Field[crate::parse::indexed::Indexed::Indexed(0)]", "ReturnValue.Field[crate::parse::indexed::Indexed::Indexed(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed>::coerce", "Argument[self].Field[crate::parse::indexed::Indexed::Indexed(0)]", "ReturnValue.Field[crate::parse::indexed::Indexed::Indexed(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed>::coerce", "Argument[self].Field[crate::parse::indexed::Indexed::Indexed(1)]", "ReturnValue.Field[crate::parse::indexed::Indexed::Indexed(1)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed>::coerce_lifetime", "Argument[self].Field[crate::parse::indexed::Indexed::Indexed(0)]", "ReturnValue.Field[crate::parse::indexed::Indexed::Indexed(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed>::coerce_lifetime", "Argument[self].Field[crate::parse::indexed::Indexed::Indexed(1)]", "ReturnValue.Field[crate::parse::indexed::Indexed::Indexed(1)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed>::from_cow_source", "Argument[self].Reference.Field[crate::parse::indexed::Indexed::Concrete(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed>::from_source", "Argument[0].Field[crate::option::Option::Some(0)].Element", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed>::from_source", "Argument[self].Reference.Field[crate::parse::indexed::Indexed::Concrete(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed>::indices", "Argument[self].Field[crate::parse::indexed::Indexed::Indexed(0)]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed>::indices", "Argument[self].Field[crate::parse::indexed::Indexed::Indexed(1)]", "ReturnValue.Field[1]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::indexed::Indexed>::into_concrete", "Argument[self].Field[crate::parse::indexed::Indexed::Concrete(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::uri::error::Error as crate::ext::IntoOwned>::into_owned", "Argument[self].Field[crate::parse::uri::error::Error::index]", "ReturnValue.Field[crate::parse::uri::error::Error::index]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::parse::uri::error::Error>::index", "Argument[self].Field[crate::parse::uri::error::Error::index]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::path::PathBuf as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::primitive_date_time::PrimitiveDateTime as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::raw_str::RawStr as crate::borrow::Borrow>::borrow", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::raw_str::RawStr as crate::borrow::Borrow>::borrow", "Argument[self].Field[crate::raw_str::RawStr(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::raw_str::RawStr as crate::borrow::ToOwned>::to_owned", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::raw_str::RawStr as crate::convert::AsRef>::as_ref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::raw_str::RawStr as crate::convert::AsRef>::as_ref", "Argument[self].Field[crate::raw_str::RawStr(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::raw_str::RawStr as crate::convert::AsRef>::as_ref", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::raw_str::RawStr as crate::convert::AsRef>::as_ref", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::raw_str::RawStr>::as_bytes", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::raw_str::RawStr>::as_ptr", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::raw_str::RawStr>::as_str", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::raw_str::RawStr>::as_str", "Argument[self].Field[crate::raw_str::RawStr(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::raw_str::RawStr>::split_at_byte", "Argument[self].Element", "ReturnValue.Field[1].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::raw_str::RawStr>::split_at_byte", "Argument[self]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::raw_str::RawStrBuf as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::raw_str::RawStrBuf(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::raw_str::RawStrBuf>::into_string", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::raw_str::RawStrBuf>::into_string", "Argument[self].Field[crate::raw_str::RawStrBuf(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::result::Result as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::status::Status>::new", "Argument[0]", "ReturnValue.Field[crate::status::Status::code]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::status::serde::DeVisitor as crate::de::Visitor>::visit_i64", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::status::serde::DeVisitor as crate::de::Visitor>::visit_u64", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::string::String as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::time::Time as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::tls::listener::TlsStream as crate::listener::Connection>::peer_address", "Argument[self].Field[crate::tls::listener::TlsStream::remote]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::tls::listener::TlsStream as crate::listener::Connection>::peer_certificates", "Argument[self].Field[crate::tls::listener::TlsStream::certs].Reference", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::tls::listener::TlsStream as crate::listener::Connection>::peer_certificates", "Argument[self].Field[crate::tls::listener::TlsStream::certs]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::tls::mtls::Certificate as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::tls::mtls::Certificate::x509]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::tls::mtls::Certificate>::as_bytes", "Argument[self].Field[crate::tls::mtls::Certificate::data].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::tls::mtls::Certificate>::has_serial", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::tls::mtls::Error as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::tls::mtls::Error::Incomplete(0)].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::tls::mtls::Error as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::tls::mtls::Error::Parse(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::tls::mtls::Name as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::tls::mtls::Name as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::tls::mtls::Name(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::absolute::Absolute as crate::convert::TryFrom>::try_from", "Argument[0].Field[crate::uri::uri::Uri::Absolute(0)]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::absolute::Absolute as crate::uri::fmt::formatter::ValidRoutePrefix>::append", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::absolute::Absolute as crate::uri::fmt::formatter::ValidRouteSuffix>::prepend", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::absolute::Absolute>::authority", "Argument[self].Field[crate::uri::absolute::Absolute::authority].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::absolute::Absolute>::const_new", "Argument[1]", "ReturnValue.Field[crate::uri::absolute::Absolute::authority]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::absolute::Absolute>::into_normalized", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::absolute::Absolute>::path", "Argument[self].Field[crate::uri::absolute::Absolute::path]", "ReturnValue.Field[crate::uri::path_query::Path::data].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::absolute::Absolute>::path", "Argument[self].Field[crate::uri::absolute::Absolute::source]", "ReturnValue.Field[crate::uri::path_query::Path::source].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::absolute::Absolute>::query", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::absolute::Absolute>::raw", "Argument[2]", "ReturnValue.Field[crate::uri::absolute::Absolute::authority]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::absolute::Absolute>::set_authority", "Argument[0]", "Argument[self].Field[crate::uri::absolute::Absolute::authority].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::absolute::Absolute>::with_authority", "Argument[0]", "Argument[self].Field[crate::uri::absolute::Absolute::authority].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::absolute::Absolute>::with_authority", "Argument[0]", "ReturnValue.Field[crate::uri::absolute::Absolute::authority].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::absolute::Absolute>::with_authority", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::asterisk::Asterisk as crate::convert::TryFrom>::try_from", "Argument[0].Field[crate::uri::uri::Uri::Asterisk(0)]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::authority::Authority as crate::convert::TryFrom>::try_from", "Argument[0].Field[crate::uri::uri::Uri::Authority(0)]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::authority::Authority>::const_new", "Argument[2]", "ReturnValue.Field[crate::uri::authority::Authority::port]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::authority::Authority>::port", "Argument[self].Field[crate::uri::authority::Authority::port]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::authority::Authority>::raw", "Argument[3]", "ReturnValue.Field[crate::uri::authority::Authority::port]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::authority::Authority>::user_info", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::fmt::formatter::Formatter>::new", "Argument[0]", "ReturnValue.Field[crate::uri::fmt::formatter::Formatter::inner]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::fmt::formatter::PrefixedRouteUri>::render", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::fmt::formatter::PrefixedRouteUri>::render", "Argument[self].Field[crate::uri::fmt::formatter::PrefixedRouteUri(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::fmt::formatter::RouteUriBuilder>::render", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::fmt::formatter::SuffixedRouteUri>::render", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::fmt::formatter::SuffixedRouteUri>::render", "Argument[self].Field[crate::uri::fmt::formatter::SuffixedRouteUri(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::fmt::uri_display::uri_display_tests::Wrapper as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::host::Host as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::uri::host::Host(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::host::Host>::new", "Argument[0]", "ReturnValue.Field[crate::uri::host::Host(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::host::Host>::port", "Argument[self].Field[0].Field[crate::uri::authority::Authority::port]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::host::Host>::port", "Argument[self].Field[crate::uri::host::Host(0)].Field[crate::uri::authority::Authority::port]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::host::Host>::to_absolute", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::host::Host>::to_authority", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::origin::Origin as crate::convert::TryFrom>::try_from", "Argument[0].Field[crate::uri::uri::Uri::Origin(0)]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::origin::Origin as crate::uri::fmt::formatter::ValidRoutePrefix>::append", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::origin::Origin>::into_normalized", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::origin::Origin>::map_path", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::origin::Origin>::new", "Argument[1]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::origin::Origin>::path", "Argument[self].Field[crate::uri::origin::Origin::path]", "ReturnValue.Field[crate::uri::path_query::Path::data].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::origin::Origin>::path", "Argument[self].Field[crate::uri::origin::Origin::source]", "ReturnValue.Field[crate::uri::path_query::Path::source].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::origin::Origin>::query", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::origin::Origin>::raw", "Argument[2]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::reference::Reference as crate::convert::From>::from", "Argument[0].Field[crate::uri::origin::Origin::path]", "ReturnValue.Field[crate::uri::reference::Reference::path]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::reference::Reference as crate::convert::From>::from", "Argument[0].Field[crate::uri::origin::Origin::query]", "ReturnValue.Field[crate::uri::reference::Reference::query]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::reference::Reference as crate::convert::From>::from", "Argument[0].Field[crate::uri::origin::Origin::source]", "ReturnValue.Field[crate::uri::reference::Reference::source]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::reference::Reference as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::uri::reference::Reference::authority].Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::reference::Reference as crate::convert::From>::from", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::reference::Reference as crate::convert::TryFrom>::try_from", "Argument[0].Field[crate::uri::uri::Uri::Reference(0)]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::reference::Reference as crate::uri::fmt::formatter::ValidRouteSuffix>::prepend", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::reference::Reference>::authority", "Argument[self].Field[crate::uri::reference::Reference::authority].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::reference::Reference>::const_new", "Argument[1]", "ReturnValue.Field[crate::uri::reference::Reference::authority]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::reference::Reference>::fragment", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::reference::Reference>::into_normalized", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::reference::Reference>::path", "Argument[self].Field[crate::uri::reference::Reference::path]", "ReturnValue.Field[crate::uri::path_query::Path::data].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::reference::Reference>::path", "Argument[self].Field[crate::uri::reference::Reference::source]", "ReturnValue.Field[crate::uri::path_query::Path::source].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::reference::Reference>::query", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::reference::Reference>::raw", "Argument[2]", "ReturnValue.Field[crate::uri::reference::Reference::authority]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::reference::Reference>::scheme", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::reference::Reference>::with_query_fragment_of", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::segments::Segments>::get", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::segments::Segments>::len", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::segments::Segments>::new", "Argument[0]", "ReturnValue.Field[crate::uri::segments::Segments::source]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::segments::Segments>::new", "Argument[1]", "ReturnValue.Field[crate::uri::segments::Segments::segments]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::segments::Segments>::skip", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::uri::Uri as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::uri::uri::Uri::Absolute(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::uri::Uri as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::uri::uri::Uri::Asterisk(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::uri::Uri as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::uri::uri::Uri::Authority(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::uri::Uri as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::uri::uri::Uri::Origin(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::uri::Uri as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::uri::uri::Uri::Reference(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::uri::Uri as crate::ext::IntoOwned>::into_owned", "Argument[self].Field[crate::uri::uri::Uri::Asterisk(0)]", "ReturnValue.Field[crate::uri::uri::Uri::Asterisk(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::uri::Uri>::absolute", "Argument[self].Field[crate::uri::uri::Uri::Absolute(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::uri::Uri>::authority", "Argument[self].Field[crate::uri::uri::Uri::Authority(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::uri::Uri>::origin", "Argument[self].Field[crate::uri::uri::Uri::Origin(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::uri::uri::Uri>::reference", "Argument[self].Field[crate::uri::uri::Uri::Reference(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<crate::vec::Vec as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<f32 as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<f64 as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<i128 as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<i16 as crate::ext::IntoOwned>::into_owned", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<i16 as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<i32 as crate::ext::IntoOwned>::into_owned", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<i32 as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<i64 as crate::ext::IntoOwned>::into_owned", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<i64 as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<i8 as crate::ext::IntoOwned>::into_owned", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<i8 as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<isize as crate::ext::IntoOwned>::into_owned", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<isize as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<u128 as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<u16 as crate::ext::IntoOwned>::into_owned", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<u16 as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<u32 as crate::ext::IntoOwned>::into_owned", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<u32 as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<u64 as crate::ext::IntoOwned>::into_owned", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<u64 as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<u8 as crate::ext::IntoOwned>::into_owned", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<u8 as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<usize as crate::ext::IntoOwned>::into_owned", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "<usize as crate::uri::fmt::from_uri_param::FromUriParam>::from_uri_param", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "crate::parse::uri::parser::complete", "Argument[0]", "Argument[1].Parameter[0]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket:rocket_http", "crate::parse::uri::scheme_from_str", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
@@ -0,0 +1,14 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/db_pools:rocket_db_pools", "<crate::database::Connection as crate::ops::deref::Deref>::deref", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/db_pools:rocket_db_pools", "<crate::database::Connection as crate::ops::deref::Deref>::deref", "Argument[self].Field[crate::database::Connection(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/db_pools:rocket_db_pools", "<crate::database::Connection as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/db_pools:rocket_db_pools", "<crate::database::Connection as crate::ops::deref::DerefMut>::deref_mut", "Argument[self].Field[crate::database::Connection(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/db_pools:rocket_db_pools", "<crate::database::Connection>::into_inner", "Argument[self].Field[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/db_pools:rocket_db_pools", "<crate::database::Connection>::into_inner", "Argument[self].Field[crate::database::Connection(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/db_pools:rocket_db_pools", "<crate::database::Initializer as crate::fairing::Fairing>::info", "Argument[self].Field[0].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::fairing::info_kind::Info::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/db_pools:rocket_db_pools", "<crate::database::Initializer as crate::fairing::Fairing>::info", "Argument[self].Field[crate::database::Initializer(0)].Field[crate::option::Option::Some(0)]", "ReturnValue.Field[crate::fairing::info_kind::Info::name]", "value", "dfc-generated"]
|
||||
@@ -0,0 +1,22 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/dyn_templates:rocket_dyn_templates", "<crate::context::manager::ContextManager>::context", "Argument[self].Field[0]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/dyn_templates:rocket_dyn_templates", "<crate::context::manager::ContextManager>::context", "Argument[self].Field[crate::context::manager::ContextManager(0)]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/dyn_templates:rocket_dyn_templates", "<crate::context::manager::ContextManager>::new", "Argument[0]", "ReturnValue.Field[crate::context::manager::ContextManager(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/dyn_templates:rocket_dyn_templates", "<crate::template::Template>::finalize", "Argument[self].Field[crate::template::Template::value].Field[crate::result::Result::Ok(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: sinkModel
|
||||
data:
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/dyn_templates:rocket_dyn_templates", "<crate::environment::Environment as crate::engine::Engine>::render", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/dyn_templates:rocket_dyn_templates", "<crate::metadata::Metadata>::render", "Argument[self]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/dyn_templates:rocket_dyn_templates", "<crate::registry::Registry as crate::engine::Engine>::init", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/dyn_templates:rocket_dyn_templates", "<crate::registry::Registry as crate::engine::Engine>::render", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/dyn_templates:rocket_dyn_templates", "<crate::template::Template as crate::response::responder::Responder>::respond_to", "Argument[self]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/dyn_templates:rocket_dyn_templates", "<crate::template::Template>::finalize", "Argument[0]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/dyn_templates:rocket_dyn_templates", "<crate::template::Template>::finalize", "Argument[self]", "log-injection", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/dyn_templates:rocket_dyn_templates", "<crate::tera::Tera as crate::engine::Engine>::render", "Argument[0]", "log-injection", "df-generated"]
|
||||
@@ -0,0 +1,10 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/sync_db_pools:rocket_sync_db_pools", "<crate::connection::ConnectionPool as crate::clone::Clone>::clone", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/sync_db_pools:rocket_sync_db_pools", "<crate::connection::ConnectionPool>::fairing", "Argument[0]", "ReturnValue.Field[crate::fairing::ad_hoc::AdHoc::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/sync_db_pools:rocket_sync_db_pools", "<crate::error::Error as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::error::Error::Config(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/sync_db_pools:rocket_sync_db_pools", "<crate::error::Error as crate::convert::From>::from", "Argument[0]", "ReturnValue.Field[crate::error::Error::Pool(0)]", "value", "dfc-generated"]
|
||||
@@ -0,0 +1,12 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/ws:rocket_ws", "<crate::websocket::WebSocket>::accept_key", "Argument[self].Field[crate::websocket::WebSocket::key]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/ws:rocket_ws", "<crate::websocket::WebSocket>::channel", "Argument[self]", "ReturnValue.Field[crate::websocket::Channel::ws]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/ws:rocket_ws", "<crate::websocket::WebSocket>::config", "Argument[0]", "Argument[self].Field[crate::websocket::WebSocket::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/ws:rocket_ws", "<crate::websocket::WebSocket>::config", "Argument[0]", "ReturnValue.Field[crate::websocket::WebSocket::config]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/ws:rocket_ws", "<crate::websocket::WebSocket>::config", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/rwf2/Rocket/tree/v0.5/contrib/ws:rocket_ws", "<crate::websocket::WebSocket>::stream", "Argument[self]", "ReturnValue.Field[crate::websocket::MessageStream::ws]", "value", "dfc-generated"]
|
||||
8
rust/ql/lib/ext/generated/rocket/repo-pastebin.model.yml
Normal file
8
rust/ql/lib/ext/generated/rocket/repo-pastebin.model.yml
Normal file
@@ -0,0 +1,8 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo::pastebin", "<crate::paste_id::PasteId as crate::request::from_param::FromParam>::from_param", "Argument[0]", "ReturnValue.Field[crate::result::Result::Err(0)]", "value", "dfc-generated"]
|
||||
- ["repo::pastebin", "<crate::paste_id::PasteId>::file_path", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
7
rust/ql/lib/ext/generated/rocket/repo-tls.model.yml
Normal file
7
rust/ql/lib/ext/generated/rocket/repo-tls.model.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo::tls", "<crate::redirector::Redirector>::try_launch", "Argument[self].Field[crate::redirector::Redirector::port]", "Argument[0].Field[crate::config::config::Config::port]", "value", "dfc-generated"]
|
||||
7
rust/ql/lib/ext/generated/rocket/repo-todo.model.yml
Normal file
7
rust/ql/lib/ext/generated/rocket/repo-todo.model.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo::todo", "<crate::Context>::raw", "Argument[1]", "ReturnValue.Field[crate::Context::flash]", "value", "dfc-generated"]
|
||||
@@ -0,0 +1,207 @@
|
||||
# THIS FILE IS AN AUTO-GENERATED MODELS AS DATA FILE. DO NOT EDIT.
|
||||
extensions:
|
||||
- addsTo:
|
||||
pack: codeql/rust-all
|
||||
extensible: summaryModel
|
||||
data:
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<&[u8] as crate::__private::de::IdentifierDeserializer>::from", "Argument[self]", "ReturnValue.Field[crate::de::value::BytesDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<&[u8] as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::BytesDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<&crate::__private::de::content::Content as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::__private::de::content::ContentRefDeserializer::content]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<&str as crate::__private::de::IdentifierDeserializer>::from", "Argument[self]", "ReturnValue.Field[crate::__private::de::StrDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<&str as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::StrDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<bool as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::BoolDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<char as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::CharDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::Borrowed as crate::__private::de::IdentifierDeserializer>::from", "Argument[self].Field[0]", "ReturnValue.Field[crate::__private::de::BorrowedStrDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::Borrowed as crate::__private::de::IdentifierDeserializer>::from", "Argument[self].Field[0]", "ReturnValue.Field[crate::de::value::BorrowedBytesDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::Borrowed as crate::__private::de::IdentifierDeserializer>::from", "Argument[self].Field[crate::__private::de::Borrowed(0)]", "ReturnValue.Field[crate::__private::de::BorrowedStrDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::Borrowed as crate::__private::de::IdentifierDeserializer>::from", "Argument[self].Field[crate::__private::de::Borrowed(0)]", "ReturnValue.Field[crate::de::value::BorrowedBytesDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::Content as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::__private::de::content::ContentDeserializer::content]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::Content>::as_str", "Argument[self].Reference.Field[crate::__private::de::content::Content::Str(0)]", "ReturnValue.Field[crate::option::Option::Some(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::Content>::as_str", "Argument[self].Reference.Field[crate::__private::de::content::Content::String(0)]", "ReturnValue.Field[crate::option::Option::Some(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentDeserializer as crate::de::Deserializer>::__deserialize_content", "Argument[self].Field[crate::__private::de::content::ContentDeserializer::content]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentDeserializer>::new", "Argument[0]", "ReturnValue.Field[crate::__private::de::content::ContentDeserializer::content]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentRefDeserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentRefDeserializer as crate::de::Deserializer>::__deserialize_content", "Argument[self].Field[crate::__private::de::content::ContentRefDeserializer::content].Reference", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentRefDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentRefDeserializer>::new", "Argument[0]", "ReturnValue.Field[crate::__private::de::content::ContentRefDeserializer::content]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentVisitor as crate::de::Visitor>::visit_bool", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::de::content::Content::Bool(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentVisitor as crate::de::Visitor>::visit_borrowed_bytes", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::de::content::Content::Bytes(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentVisitor as crate::de::Visitor>::visit_borrowed_str", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::de::content::Content::Str(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentVisitor as crate::de::Visitor>::visit_byte_buf", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::de::content::Content::ByteBuf(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentVisitor as crate::de::Visitor>::visit_char", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::de::content::Content::Char(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentVisitor as crate::de::Visitor>::visit_f32", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::de::content::Content::F32(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentVisitor as crate::de::Visitor>::visit_f64", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::de::content::Content::F64(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentVisitor as crate::de::Visitor>::visit_i16", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::de::content::Content::I16(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentVisitor as crate::de::Visitor>::visit_i32", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::de::content::Content::I32(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentVisitor as crate::de::Visitor>::visit_i64", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::de::content::Content::I64(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentVisitor as crate::de::Visitor>::visit_i8", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::de::content::Content::I8(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentVisitor as crate::de::Visitor>::visit_string", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::de::content::Content::String(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentVisitor as crate::de::Visitor>::visit_u16", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::de::content::Content::U16(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentVisitor as crate::de::Visitor>::visit_u32", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::de::content::Content::U32(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentVisitor as crate::de::Visitor>::visit_u64", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::de::content::Content::U64(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::ContentVisitor as crate::de::Visitor>::visit_u8", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::de::content::Content::U8(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::EnumDeserializer>::new", "Argument[0]", "ReturnValue.Field[crate::__private::de::content::EnumDeserializer::variant]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::EnumDeserializer>::new", "Argument[1]", "ReturnValue.Field[crate::__private::de::content::EnumDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::InternallyTaggedUnitVisitor>::new", "Argument[0]", "ReturnValue.Field[crate::__private::de::content::InternallyTaggedUnitVisitor::type_name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::InternallyTaggedUnitVisitor>::new", "Argument[1]", "ReturnValue.Field[crate::__private::de::content::InternallyTaggedUnitVisitor::variant_name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::TaggedContentVisitor>::new", "Argument[0]", "ReturnValue.Field[crate::__private::de::content::TaggedContentVisitor::tag_name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::TaggedContentVisitor>::new", "Argument[1]", "ReturnValue.Field[crate::__private::de::content::TaggedContentVisitor::expecting]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::UntaggedUnitVisitor>::new", "Argument[0]", "ReturnValue.Field[crate::__private::de::content::UntaggedUnitVisitor::type_name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::de::content::UntaggedUnitVisitor>::new", "Argument[1]", "ReturnValue.Field[crate::__private::de::content::UntaggedUnitVisitor::variant_name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::FlatMapSerializer as crate::ser::Serializer>::serialize_map", "Argument[self].Field[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::FlatMapSerializeMap(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::FlatMapSerializer as crate::ser::Serializer>::serialize_map", "Argument[self].Field[crate::__private::ser::FlatMapSerializer(0)]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::FlatMapSerializeMap(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::FlatMapSerializer as crate::ser::Serializer>::serialize_struct", "Argument[self].Field[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::FlatMapSerializeStruct(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::FlatMapSerializer as crate::ser::Serializer>::serialize_struct", "Argument[self].Field[crate::__private::ser::FlatMapSerializer(0)]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::FlatMapSerializeStruct(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::FlatMapSerializer as crate::ser::Serializer>::serialize_struct_variant", "Argument[2]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::FlatMapSerializeStructVariantAsMapValue::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::FlatMapSerializer as crate::ser::Serializer>::serialize_struct_variant", "Argument[self].Field[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::FlatMapSerializeStructVariantAsMapValue::map]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::FlatMapSerializer as crate::ser::Serializer>::serialize_struct_variant", "Argument[self].Field[crate::__private::ser::FlatMapSerializer(0)]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::FlatMapSerializeStructVariantAsMapValue::map]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::FlatMapSerializer as crate::ser::Serializer>::serialize_tuple_variant", "Argument[self].Field[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::FlatMapSerializeTupleVariantAsMapValue::map]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::FlatMapSerializer as crate::ser::Serializer>::serialize_tuple_variant", "Argument[self].Field[crate::__private::ser::FlatMapSerializer(0)]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::FlatMapSerializeTupleVariantAsMapValue::map]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::TaggedSerializer as crate::ser::Serializer>::serialize_struct_variant", "Argument[2]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::SerializeStructVariantAsMapValue::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::TaggedSerializer as crate::ser::Serializer>::serialize_tuple_variant", "Argument[2]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::SerializeTupleVariantAsMapValue::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_bool", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::Bool(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_char", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::Char(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_f32", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::F32(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_f64", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::F64(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_i16", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::I16(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_i32", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::I32(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_i64", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::I64(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_i8", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::I8(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_newtype_struct", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::NewtypeStruct(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_newtype_variant", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::NewtypeVariant(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_newtype_variant", "Argument[1]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::NewtypeVariant(1)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_newtype_variant", "Argument[2]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::NewtypeVariant(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_u16", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::U16(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_u32", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::U32(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_u64", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::U64(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_u8", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::U8(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_unit_struct", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::UnitStruct(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_unit_variant", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::UnitVariant(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_unit_variant", "Argument[1]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::UnitVariant(1)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::ContentSerializer as crate::ser::Serializer>::serialize_unit_variant", "Argument[2]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::UnitVariant(2)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::SerializeMap as crate::ser::SerializeMap>::end", "Argument[self].Field[crate::__private::ser::content::SerializeMap::entries]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::Map(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::SerializeSeq as crate::ser::SerializeSeq>::end", "Argument[self].Field[crate::__private::ser::content::SerializeSeq::elements]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::Seq(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::SerializeStruct as crate::ser::SerializeStruct>::end", "Argument[self].Field[crate::__private::ser::content::SerializeStruct::fields]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::Struct(1)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::SerializeStruct as crate::ser::SerializeStruct>::end", "Argument[self].Field[crate::__private::ser::content::SerializeStruct::name]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::Struct(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::SerializeStructVariant as crate::ser::SerializeStructVariant>::end", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::SerializeStructVariantAsMapValue>::new", "Argument[0]", "ReturnValue.Field[crate::__private::ser::content::SerializeStructVariantAsMapValue::map]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::SerializeStructVariantAsMapValue>::new", "Argument[1]", "ReturnValue.Field[crate::__private::ser::content::SerializeStructVariantAsMapValue::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::SerializeTuple as crate::ser::SerializeTuple>::end", "Argument[self].Field[crate::__private::ser::content::SerializeTuple::elements]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::Tuple(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::SerializeTupleStruct as crate::ser::SerializeTupleStruct>::end", "Argument[self].Field[crate::__private::ser::content::SerializeTupleStruct::fields]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::TupleStruct(1)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::SerializeTupleStruct as crate::ser::SerializeTupleStruct>::end", "Argument[self].Field[crate::__private::ser::content::SerializeTupleStruct::name]", "ReturnValue.Field[crate::result::Result::Ok(0)].Field[crate::__private::ser::content::Content::TupleStruct(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::SerializeTupleVariant as crate::ser::SerializeTupleVariant>::end", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::SerializeTupleVariantAsMapValue>::new", "Argument[0]", "ReturnValue.Field[crate::__private::ser::content::SerializeTupleVariantAsMapValue::map]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::__private::ser::content::SerializeTupleVariantAsMapValue>::new", "Argument[1]", "ReturnValue.Field[crate::__private::ser::content::SerializeTupleVariantAsMapValue::name]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::borrow::Cow as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::CowStrDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::impls::BoolVisitor as crate::de::Visitor>::visit_bool", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::impls::BytesVisitor as crate::de::Visitor>::visit_borrowed_bytes", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::impls::BytesVisitor as crate::de::Visitor>::visit_borrowed_str", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::impls::CharVisitor as crate::de::Visitor>::visit_char", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::impls::FromStrVisitor as crate::de::Visitor>::visit_str", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::impls::PathBufVisitor as crate::de::Visitor>::visit_str", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::impls::PathBufVisitor as crate::de::Visitor>::visit_string", "Argument[0]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::impls::StrVisitor as crate::de::Visitor>::visit_borrowed_str", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::impls::StringInPlaceVisitor as crate::de::Visitor>::visit_string", "Argument[0]", "Argument[self].Field[0].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::impls::StringInPlaceVisitor as crate::de::Visitor>::visit_string", "Argument[0]", "Argument[self].Field[crate::de::impls::StringInPlaceVisitor(0)].Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::impls::StringVisitor as crate::de::Visitor>::visit_string", "Argument[0]", "ReturnValue.Field[crate::result::Result::Ok(0)]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::BoolDeserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::BoolDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::BoolDeserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::BoolDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::BorrowedBytesDeserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::BorrowedBytesDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::BorrowedBytesDeserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::BorrowedBytesDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::BorrowedStrDeserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::BorrowedStrDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::BorrowedStrDeserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::BorrowedStrDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::BytesDeserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::BytesDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::BytesDeserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::BytesDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::CharDeserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::CharDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::CharDeserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::CharDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::CowStrDeserializer as crate::clone::Clone>::clone", "Argument[self].Field[crate::de::value::CowStrDeserializer::value].Reference", "ReturnValue.Field[crate::de::value::CowStrDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::CowStrDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::CowStrDeserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::CowStrDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::EnumAccessDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::EnumAccessDeserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::EnumAccessDeserializer::access]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::Error as crate::error::Error>::description", "Argument[self].Field[crate::de::value::Error::err]", "ReturnValue.Reference", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::F32Deserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::F32Deserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::F32Deserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::F32Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::F64Deserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::F64Deserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::F64Deserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::F64Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::I128Deserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::I128Deserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::I128Deserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::I128Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::I16Deserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::I16Deserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::I16Deserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::I16Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::I32Deserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::I32Deserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::I32Deserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::I32Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::I64Deserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::I64Deserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::I64Deserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::I64Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::I8Deserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::I8Deserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::I8Deserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::I8Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::IsizeDeserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::IsizeDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::IsizeDeserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::IsizeDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::MapAccessDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::MapAccessDeserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::MapAccessDeserializer::map]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::MapDeserializer as crate::clone::Clone>::clone", "Argument[self]", "ReturnValue", "taint", "df-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::MapDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::NeverDeserializer as crate::de::Deserializer>::deserialize_any", "Argument[self].Field[crate::de::value::NeverDeserializer::never]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::NeverDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::SeqAccessDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::SeqAccessDeserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::SeqAccessDeserializer::seq]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::SeqDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::StrDeserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::StrDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::StrDeserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::StrDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::StringDeserializer as crate::clone::Clone>::clone", "Argument[self].Field[crate::de::value::StringDeserializer::value].Reference", "ReturnValue.Field[crate::de::value::StringDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::StringDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::StringDeserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::StringDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::U128Deserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::U128Deserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::U128Deserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::U128Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::U16Deserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::U16Deserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::U16Deserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::U16Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::U32Deserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::U32Deserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::U32Deserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::U32Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::U64Deserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::U64Deserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::U64Deserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::U64Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::U8Deserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::U8Deserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::U8Deserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::U8Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::UnitDeserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::UnitDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::UsizeDeserializer as crate::clone::Clone>::clone", "Argument[self].Reference", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::UsizeDeserializer as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::de::value::UsizeDeserializer>::new", "Argument[0]", "ReturnValue.Field[crate::de::value::UsizeDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::format::Buf>::new", "Argument[0]", "ReturnValue.Field[crate::format::Buf::bytes]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<crate::string::String as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::StringDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<f32 as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::F32Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<f64 as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::F64Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<i128 as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::I128Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<i16 as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::I16Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<i32 as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::I32Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<i64 as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::I64Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<i8 as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::I8Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<isize as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::IsizeDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<u128 as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::U128Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<u16 as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::U16Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<u32 as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::U32Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<u64 as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::U64Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<u8 as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::U8Deserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "<usize as crate::de::IntoDeserializer>::into_deserializer", "Argument[self]", "ReturnValue.Field[crate::de::value::UsizeDeserializer::value]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "crate::__private::ser::constrain", "Argument[0]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "crate::de::size_hint::cautious", "Argument[0].Field[crate::option::Option::Some(0)]", "ReturnValue", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "crate::de::value::private::map_as_enum", "Argument[0]", "ReturnValue.Field[crate::de::value::private::MapAsEnum::map]", "value", "dfc-generated"]
|
||||
- ["repo:https://github.com/serde-rs/serde:serde", "crate::de::value::private::unit_only", "Argument[0]", "ReturnValue.Field[0]", "value", "dfc-generated"]
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user